Class DS_INDEXABLE_SORTER |
note
description: "Indexable data structure sorters" library: "Gobo Eiffel Structure Library" author: "Eric Bezault <ericb@gobosoft.com>" copyright: "Copyright (c) 2000-2001, Eric Bezault and others" license: "MIT License"
deferred class interface
DS_INDEXABLE_SORTER [G -> COMPARABLE]
inherit
DS_SORTER [G]
feature -- Access
comparator: DS_COMPARATOR [G] -- Comparison criterion
feature -- Status report
sorted (a_container: DS_INDEXABLE [G]): BOOLEAN -- Is a_container sorted in increasing order? -- (From DS_SORTER.) require a_container_not_void: a_container /= Voidreverse_sorted (a_container: DS_INDEXABLE [G]): BOOLEAN -- Is a_container sorted in decreasing order? -- (From DS_SORTER.) require a_container_not_void: a_container /= Voidsorted_with_comparator (a_container: DS_INDEXABLE [G]; a_comparator: DS_COMPARATOR [G]): BOOLEAN -- Is a_container sorted according to -- a_comparator's comparison criterion? -- (From DS_SORTER.) require a_container_not_void: a_container /= Void a_comparator_not_void: a_comparator /= Voidsubsorted (a_container: DS_INDEXABLE [G]; lower, upper: INTEGER): BOOLEAN -- Is a_container sorted in increasing order -- within bounds lower..upper? require a_container_not_void: a_container /= Void valid_lower: 1 <= lower and lower <= a_container.count valid_upper: 1 <= upper and upper <= a_container.count valid_bounds: lower <= upperreverse_subsorted (a_container: DS_INDEXABLE [G]; lower, upper: INTEGER): BOOLEAN -- Is a_container sorted in decreasing order -- within bounds lower..upper? require a_container_not_void: a_container /= Void valid_lower: 1 <= lower and lower <= a_container.count valid_upper: 1 <= upper and upper <= a_container.count valid_bounds: lower <= uppersubsorted_with_comparator (a_container: DS_INDEXABLE [G]; a_comparator: DS_COMPARATOR [G]; lower, upper: INTEGER): BOOLEAN -- Is a_container sorted according to a_comparator's -- comparison criterion within bounds lower..upper? require a_container_not_void: a_container /= Void a_comparator_not_void: a_comparator /= Void valid_lower: 1 <= lower and lower <= a_container.count valid_upper: 1 <= upper and upper <= a_container.count valid_bounds: lower <= upper
feature -- Sort
sort (a_container: DS_INDEXABLE [G]) -- Sort a_container in increasing order. -- (From DS_SORTER.) require a_container_not_void: a_container /= Void ensure sorted: sorted (a_container)reverse_sort (a_container: DS_INDEXABLE [G]) -- Sort a_container in decreasing order. -- (From DS_SORTER.) require a_container_not_void: a_container /= Void ensure sorted: reverse_sorted (a_container)sort_with_comparator (a_container: DS_INDEXABLE [G]; a_comparator: DS_COMPARATOR [G]) -- Sort a_container according to -- a_comparator's comparison criterion? -- (From DS_SORTER.) require a_container_not_void: a_container /= Void a_comparator_not_void: a_comparator /= Void ensure sorted: sorted_with_comparator (a_container, a_comparator)subsort (a_container: DS_INDEXABLE [G]; lower, upper: INTEGER) -- Sort a_container in increasing order -- within bounds lower..upper? require a_container_not_void: a_container /= Void valid_lower: 1 <= lower and lower <= a_container.count valid_upper: 1 <= upper and upper <= a_container.count valid_bounds: lower <= upper ensure subsorted: subsorted (a_container, lower, upper)reverse_subsort (a_container: DS_INDEXABLE [G]; lower, upper: INTEGER) -- Sort a_container in decreasing order -- within bounds lower..upper? require a_container_not_void: a_container /= Void valid_lower: 1 <= lower and lower <= a_container.count valid_upper: 1 <= upper and upper <= a_container.count valid_bounds: lower <= upper ensure subsorted: reverse_subsorted (a_container, lower, upper)subsort_with_comparator (a_container: DS_INDEXABLE [G]; a_comparator: DS_COMPARATOR [G]; lower, upper: INTEGER) -- Sort a_container according to a_comparator's -- comparison criterion within bounds lower..upper? require a_container_not_void: a_container /= Void a_comparator_not_void: a_comparator /= Void valid_lower: 1 <= lower and lower <= a_container.count valid_upper: 1 <= upper and upper <= a_container.count valid_bounds: lower <= upper deferred ensure subsorted: subsorted_with_comparator (a_container, a_comparator, lower, upper)
invariant
comparator_not_void: comparator /= Void
end -- class DS_INDEXABLE_SORTER
Copyright © 2000-2001, Eric
Bezault mailto:ericb@gobosoft.com http://www.gobosoft.com Last Updated: 31 March 2001 |