Changeset 1506 for trunk/src/emx/include/splay-tree.h
- Timestamp:
- Sep 15, 2004, 12:27:38 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/splay-tree.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1505 r1506 1 /* A splay-tree datatype. 1 /* splay-tree.h,v 1.2 2004/09/14 22:27:35 bird Exp */ 2 /** @file 3 * GNU, -liberty. 4 */ 5 /* A splay-tree datatype. 2 6 Copyright 1998, 1999, 2000 Free Software Foundation, Inc. 3 7 Contributed by Mark Mitchell (mark@markmitchell.com). 4 8 5 9 This file is part of GCC. 6 10 7 11 GCC is free software; you can redistribute it and/or modify it 8 12 under the terms of the GNU General Public License as published by … … 23 27 24 28 Lewis, Harry R. and Denenberg, Larry. Data Structures and Their 25 Algorithms. Harper-Collins, Inc. 1991. 29 Algorithms. Harper-Collins, Inc. 1991. 26 30 27 31 The major feature of splay trees is that all basic tree operations … … 121 125 void *)); 122 126 extern void splay_tree_delete PARAMS((splay_tree)); 123 extern splay_tree_node splay_tree_insert 127 extern splay_tree_node splay_tree_insert 124 128 PARAMS((splay_tree, 125 129 splay_tree_key, … … 127 131 extern void splay_tree_remove PARAMS((splay_tree, 128 132 splay_tree_key)); 129 extern splay_tree_node splay_tree_lookup 133 extern splay_tree_node splay_tree_lookup 130 134 PARAMS((splay_tree, 131 135 splay_tree_key)); … … 147 151 extern int splay_tree_compare_pointers PARAMS((splay_tree_key, 148 152 splay_tree_key)); 149 153 150 154 #ifdef __cplusplus 151 155 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.