Changeset 1506 for trunk/src/emx/include/fibheap.h
- Timestamp:
- Sep 15, 2004, 12:27:38 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/fibheap.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1505 r1506 1 /* fibheap.h,v 1.2 2004/09/14 22:27:32 bird Exp */ 2 /** @file 3 * GNU, -liberty. 4 */ 5 1 6 /* A Fibonacci heap datatype. 2 7 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc. … … 4 9 5 10 This file is part of GCC. 6 11 7 12 GCC is free software; you can redistribute it and/or modify it 8 13 under the terms of the GNU General Public License as published by … … 34 39 35 40 ExtractMin: O(lg n) amortized. O(n) worst case. 36 DecreaseKey: O(1) amortized. O(lg n) worst case. 37 Insert: O(2) amortized. O(1) actual. 41 DecreaseKey: O(1) amortized. O(lg n) worst case. 42 Insert: O(2) amortized. O(1) actual. 38 43 Union: O(1) amortized. O(1) actual. */ 39 44 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.