File: bsearch.3

package info (click to toggle)
manpages-de 0.5-4.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,768 kB
  • ctags: 9
  • sloc: makefile: 86
file content (113 lines) | stat: -rw-r--r-- 4,033 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" References consulted:
.\"     Linux libc source code
.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
.\"     386BSD man pages
.\" Modified Mon Mar 29 22:41:16 1993, David Metcalfe
.\" Modified Sat Jul 24 21:35:16 1993, Rik Faith (faith@cs.unc.edu)
.\" Translated into German by Jens Rohler (jkcr@rohler.de)
.\"
.TH BSEARCH 3 "12. Mrz 2006" "" "Bibliotheksfunktionen"
.SH BEZEICHNUNG
bsearch \- Binre Suche in einem sortierten Array
.SH "BERSICHT"
.nf
.B #include <stdlib.h>
.sp
.BI "void *bsearch(const void *" key ", const void *" base ", size_t " nmemb ,
.RS
.BI "size_t " size ", int (*" compar ")(const void *, const void *));"
.RE
.fi
.SH BESCHREIBUNG
\fBbsearch\fP() durchsucht ein Array mit einer Anzahl von \fInmemb\fP 
Elementen, auf dessen erstes Element \fIbase\fP zeigt, nach einem 
Element, das mit dem Objekt bereinstimmt, auf das \fIkey\fP zeigt.  
Die Gre der einzelnen Elemente des Arrays ist durch \fIsize\fP festgelegt.  
.PP
Der Inhalt des Arrays sollte gem der Vergleichsfunktion, auf die
\fIcompar\fP verweist, aufsteigend sortiert sein.  
Die Funktion \fIcompar\fP muss zwei Argumente entgegennehmen.  Das erste 
Argument verweist auf \fIkey\fP und das zweite auf ein Arrayelement.  
Der Rckgabewert sollte ein Integer sein, der kleiner,
gleich oder grer Null ist, falls das \fIkey\fP-Objekt kleiner, gleich oder
grer als das Arrayelement ist.  
.SH RCKGABEWERT
Die Funktion \fBbsearch\fP() gibt einen Zeiger auf ein passendes Arrayelement
zurck, oder NULL wenn keine bereinstimmung gefunden wurde.  Gibt es 
mehrere Elemente die auf \fIkey\fP passen, ist das zurckgegebene Element
nicht spezifiziert.  
.SH BEISPIEL
Das folgende Beispiel sortiert zuerst ein Array von Strukturen mittels
.BR qsort (3),
und sucht dann nach dem gewnschten Element mit
.BR bsearch ().  
.sp
.nf
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct mi {
	int nr;
	char *name;
} months[] = {
	{ 1, "jan" }, { 2, "feb" }, { 3, "mar" }, { 4, "apr" },
	{ 5, "may" }, { 6, "jun" }, { 7, "jul" }, { 8, "aug" },
	{ 9, "sep" }, {10, "oct" }, {11, "nov" }, {12, "dec" }
};

#define nr_of_months (sizeof(months)/sizeof(months[0]))

static int compmi(const void *m1, const void *m2) {
	struct mi *mi1 = (struct mi *) m1;
	struct mi *mi2 = (struct mi *) m2;
	return strcmp(mi1->name, mi2->name);
}

int main(int argc, char **argv) {
	int i;

	qsort(months, nr_of_months, sizeof(struct mi), compmi);
	for (i = 1; i < argc; i++) {
		struct mi key, *res;
		key.name = argv[i];
		res = bsearch(&key, months, nr_of_months,
			      sizeof(struct mi), compmi);
		if (res == NULL)
			printf("'%s': unknown month\en", argv[i]);
		else
			printf("%s: month #%d\en", res->name, res->nr);
	}
	return 0;
}
.fi
.\" this example referred to in qsort.3
.SH "KONFORM ZU"
SVID 3, 4.3BSD, ISO 9899 (C99)
.SH "SIEHE AUCH"
.BR hsearch (3),
.BR lsearch (3),
.BR qsort (3),
.BR tsearch (3).