HEAP/priority queue
François Pinard
pinard at iro.umontreal.ca
Sat May 13 20:35:36 EDT 2000
More information about the Python-list mailing list
Sat May 13 20:35:36 EDT 2000
- Previous message (by thread): HEAP/priority queue
- Next message (by thread): HEAP/priority queue
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
François Pinard <pinard at iro.umontreal.ca> writes: > if ((high+1 < len(array) > and compare(array[high], array[high+1]))) > 0: Of course, this should have been: > if ((high+1 < len(array) > and compare(array[high], array[high+1]) > 0)): -- François Pinard http://www.iro.umontreal.ca/~pinard
- Previous message (by thread): HEAP/priority queue
- Next message (by thread): HEAP/priority queue
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list