/[zanavi_public1]/navit/navit/fib-1.1/fib.h
ZANavi

Contents of /navit/navit/fib-1.1/fib.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations) (download)
Fri Oct 28 21:19:04 2011 UTC (12 years, 5 months ago) by zoff99
File MIME type: text/plain
File size: 2527 byte(s)
import files
1 /*-
2 * Copyright 1997, 1998-2003 John-Mark Gurney.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $Id: fib.h,v 1.1 2005-12-02 10:41:56 martin-s Exp $
27 *
28 */
29
30 #ifndef _FIB_H_
31 #define _FIB_H_
32
33 struct fibheap;
34 struct fibheap_el;
35 typedef int (*voidcmp)(void *, void *);
36
37 /* functions for key heaps */
38 struct fibheap *fh_makekeyheap(void);
39 struct fibheap_el *fh_insertkey(struct fibheap *, int, void *);
40 int fh_minkey(struct fibheap *);
41 int fh_replacekey(struct fibheap *, struct fibheap_el *, int);
42 void *fh_replacekeydata(struct fibheap *, struct fibheap_el *, int, void *);
43
44 /* functions for void * heaps */
45 struct fibheap *fh_makeheap(void);
46 voidcmp fh_setcmp(struct fibheap *, voidcmp);
47 void *fh_setneginf(struct fibheap *, void *);
48 struct fibheap_el *fh_insert(struct fibheap *, void *);
49
50 /* shared functions */
51 void *fh_extractmin(struct fibheap *);
52 void *fh_min(struct fibheap *);
53 void *fh_replacedata(struct fibheap *, struct fibheap_el *, void *);
54 void *fh_delete(struct fibheap *, struct fibheap_el *);
55 void fh_deleteheap(struct fibheap *);
56 struct fibheap *fh_union(struct fibheap *, struct fibheap *);
57
58 #ifdef FH_STATS
59 int fh_maxn(struct fibheap *);
60 int fh_ninserts(struct fibheap *);
61 int fh_nextracts(struct fibheap *);
62 #endif
63
64 #endif /* _FIB_H_ */

   
Visit the ZANavi Wiki