- indexing
- title: "Some universal common facilities of the guides for classes", "SORTED_LIST_ and SORTED_TABLE_ (used without duplicates);", "---------------------------------------------------------", " All algorithms are taken (with minor changes) from book ", " Introduction to Algorithms by Thomas H. Cormen, Charles ", " E. Leiserson and Ronald L. Rivest (c) The Massachusetts ", " Institute of Technology, 1990 --------------------------"
- project: "Visual Eiffel"
- revision: "$Revision: 1.2 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: containers
deferred class SIMPLE_ORDER_ [G -> COMPARABLE]
- inherit
-
POOL_
[G]
-
- rename
-
prev
as left,
-
next
as right
-
- redefine
- count,
- first,
- forth,
- put,
- remove
- end
- invariant
-
proper_tree_structure:
is_a_red_black_tree
end -- class SIMPLE_ORDER_