Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:
indexing description: "Circular chains implemented as linked lists" status: "See notice at end of class" names: linked_circular, ring, sequence representation: linked access: index, cursor, membership contents: generic date: "$Date: 2001/11/16 20:34:20 $" revision: "$Revision: 1.1.1.1 $" class LINKED_CIRCULAR [G] create make feature -- Initialization make is -- Create an empty list do create list.make end feature -- Access cursor: CURSOR is -- Current cursor position do create {CIRCULAR_CURSOR} Result.make (list.cursor, internal_exhausted, starter) end first: G is -- Item at position currently defined as first -- (from CIRCULAR) require -- from CHAIN not_empty: not is_empty local pos: INTEGER do pos := standard_index start Result := item move (pos - 1) end has (v: like item): BOOLEAN is -- Does chain include v? -- (Reference or object equality, -- based on object_comparison.) -- (from CHAIN) local pos: CURSOR do pos := cursor Result := sequential_has (v) go_to (pos) ensure -- from CONTAINER not_found_in_empty: Result implies not is_empty end i_th (i: INTEGER): like item is -- Item at i-th position -- Was declared in CHAIN as synonym of @. -- (from CHAIN) require -- from TABLE valid_key: valid_index (k) local pos: CURSOR do pos := cursor go_i_th (i) Result := item go_to (pos) end index: INTEGER is -- Current cursor index, with respect to position -- currently defined as first -- (from CIRCULAR) local first_ind, std_ind: INTEGER p: CURSOR do p := cursor std_ind := standard_index start first_ind := standard_index Result := std_ind - first_ind + 1 if Result < 0 then Result := count + Result end move (Result - 1) go_to (p) end index_of (v: like item; i: INTEGER): INTEGER is -- Index of i-th occurrence of item identical to v. -- (Reference or object equality, -- based on object_comparison.) -- 0 if none. -- (from CHAIN) require -- from LINEAR positive_occurrences: i > 0 local pos: CURSOR do pos := cursor Result := sequential_index_of (v, i) go_to (pos) ensure -- from LINEAR non_negative_result: Result >= 0 end item: G is -- Current item require -- from TRAVERSABLE not_off: not off require -- from ACTIVE readable: readable do Result := list.item end last: like first is -- Item at position currently defined as last -- (from CIRCULAR) require -- from CHAIN not_empty: not is_empty local pos: INTEGER do pos := standard_index finish Result := item start move (pos - 1) end sequential_occurrences (v: G): INTEGER is -- Number of times v appears. -- (Reference or object equality, -- based on object_comparison.) -- (from LINEAR) do from start search (v) until exhausted loop Result := Result + 1 forth search (v) end ensure -- from BAG non_negative_occurrences: Result >= 0 end infix "@" (i: INTEGER): like item is -- Item at i-th position -- Was declared in CHAIN as synonym of i_th. -- (from CHAIN) require -- from TABLE valid_key: valid_index (k) local pos: CURSOR do pos := cursor go_i_th (i) Result := item go_to (pos) end feature {NONE} -- Access l_first: like item is -- Item at first position -- (from CHAIN) require -- from CHAIN not_empty: not is_empty local pos: CURSOR do pos := cursor start Result := item go_to (pos) end sequential_has (v: like item): BOOLEAN is -- Does structure include an occurrence of v? -- (Reference or object equality, -- based on object_comparison.) -- (from LINEAR) do start if not off then search (v) end Result := not exhausted ensure -- from CONTAINER not_found_in_empty: Result implies not is_empty end sequential_index_of (v: like item; i: INTEGER): INTEGER is -- Index of i-th occurrence of v. -- 0 if none. -- (Reference or object equality, -- based on object_comparison.) -- (from LINEAR) require -- from LINEAR positive_occurrences: i > 0 local occur, pos: INTEGER do if object_comparison and v /= void then from start pos := 1 until off or (occur = i) loop if item /= void and then v.is_equal (item) then occur := occur + 1 end forth pos := pos + 1 end else from start pos := 1 until off or (occur = i) loop if item = v then occur := occur + 1 end forth pos := pos + 1 end end if occur = i then Result := pos - 1 end ensure -- from LINEAR non_negative_result: Result >= 0 end sequential_search (v: like item) is -- Move to first position (at or after current -- position) where item and v are equal. -- (Reference or object equality, -- based on object_comparison.) -- If no such position ensure that exhausted will be true. -- (from LINEAR) do if object_comparison and v /= void then from until exhausted or else (item /= void and then v.is_equal (item)) loop forth end else from until exhausted or else v = item loop forth end end ensure -- from LINEAR object_found: (not exhausted and object_comparison) implies equal (v, item) item_found: (not exhausted and not object_comparison) implies v = item end feature -- Measurement count: INTEGER is -- Number of items do Result := list.count end index_set: INTEGER_INTERVAL is -- Range of acceptable indexes -- (from CHAIN) do create Result.make (1, count) ensure -- from INDEXABLE not_void: Result /= void ensure then -- from CHAIN count_definition: Result.count = count end occurrences (v: like item): INTEGER is -- Number of times v appears. -- (Reference or object equality, -- based on object_comparison.) -- (from CHAIN) local pos: CURSOR do pos := cursor Result := sequential_occurrences (v) go_to (pos) ensure -- from BAG non_negative_occurrences: Result >= 0 end occurrences (v: like item): INTEGER is -- Number of times v appears. -- (Reference or object equality, -- based on object_comparison.) -- (from CHAIN) local pos: CURSOR do pos := cursor Result := sequential_occurrences (v) go_to (pos) ensure -- from BAG non_negative_occurrences: Result >= 0 end feature -- Comparison is_equal (other: like Current): BOOLEAN is -- Does other contain the same elements? -- (from LIST) require -- from ANY other_not_void: other /= void local c1, c2: CURSOR do if Current = other then Result := True else Result := (is_empty = other.is_empty) and (object_comparison = other.object_comparison) if Result and not is_empty then c1 ?= cursor c2 ?= other.cursor check cursors_exist: c1 /= void and c2 /= void end from start other.start until after or not Result loop if object_comparison then Result := equal (item, other.item) else Result := (item = other.item) end forth other.forth end go_to (c1) other.go_to (c2) elseif is_empty and other.is_empty and object_comparison = other.object_comparison then Result := True end end ensure -- from ANY symmetric: Result implies other.is_equal (Current) consistent: standard_is_equal (other) implies Result ensure then -- from LIST indices_unchanged: index = old index and other.index = old other.index true_implies_same_size: Result implies count = other.count end feature -- Status report after: BOOLEAN is -- Is there no valid cursor position to the right of cursor? -- (from CIRCULAR) do Result := is_empty and standard_after ensure then -- from CIRCULAR empty_and_std_after: Result = (is_empty and standard_after) end before: BOOLEAN is -- Is there no valid cursor position to the right of cursor? -- (from CIRCULAR) do Result := is_empty and standard_before ensure then -- from CIRCULAR empty_and_std_before: Result = (is_empty and standard_before) end changeable_comparison_criterion: BOOLEAN is -- May object_comparison be changed? -- (Answer: yes by default.) -- (from CONTAINER) do Result := True end empty: BOOLEAN is obsolete "ELKS 2000: Use `is_empty' instead" -- Is there no element? -- (from CONTAINER) do Result := is_empty end exhausted: BOOLEAN is -- Has structure been completely explored? -- (from CIRCULAR) do Result := is_empty or internal_exhausted ensure -- from LINEAR exhausted_when_off: off implies Result end Extendible: BOOLEAN is True -- May new items be added? (Answer: yes.) -- (from DYNAMIC_CHAIN) Full: BOOLEAN is False -- Is structured filled to capacity? (Answer: no.) is_empty: BOOLEAN is -- Is structure empty? -- (from FINITE) do Result := (count = 0) end is_inserted (v: G): BOOLEAN is -- Has v been inserted by the most recent insertion? -- (By default, the value returned is equivalent to calling -- `has (v)'. However, descendants might be able to provide more -- efficient implementations.) -- (from COLLECTION) do Result := has (v) end isfirst: BOOLEAN is -- Is cursor on first item? do if not is_empty then if starter = 0 then Result := list.isfirst else Result := (standard_index = starter) end end ensure -- from CHAIN valid_position: Result implies not is_empty end islast: BOOLEAN is -- Is cursor on last item? do if not is_empty then if (starter = 0) or (starter = 1) then Result := standard_islast else Result := (standard_index = starter - 1) end end ensure -- from CHAIN valid_position: Result implies not is_empty end object_comparison: BOOLEAN -- Must search operations use equal rather than = -- for comparing references? (Default: no, use =.) -- (from CONTAINER) off: BOOLEAN is -- Is there no current item? -- (from CIRCULAR) do Result := is_empty ensure then -- from CIRCULAR only_when_empty: Result = is_empty end prunable: BOOLEAN is -- May items be removed? (Answer: yes.) -- (from DYNAMIC_CHAIN) do Result := True end readable: BOOLEAN is -- Is there a current item that may be read? do Result := list.readable end valid_cursor (p: CURSOR): BOOLEAN is -- Can the cursor be moved to position p? local c_c: CIRCULAR_CURSOR do c_c ?= p if c_c /= void then Result := list.valid_cursor (c_c.cursor) end end valid_cursor_index (i: INTEGER): BOOLEAN is -- Is i a possible cursor position? -- (from CIRCULAR) do Result := (i >= 0) and (i <= count) ensure -- from CHAIN valid_cursor_index_definition: Result = ((i >= 0) and (i <= count + 1)) ensure then -- from CIRCULAR valid_cursor_index_definition: Result = ((i >= 0) and (i <= count)) end valid_index (i: INTEGER): BOOLEAN is -- Is i within allowable bounds? -- (from CHAIN) do Result := (i >= 1) and (i <= count) ensure then -- from INDEXABLE only_if_in_index_set: Result implies ((i >= index_set.lower) and (i <= index_set.upper)) ensure then -- from CHAIN valid_index_definition: Result = ((i >= 1) and (i <= count)) end writable: BOOLEAN is -- Is there a current item that may be written? do Result := list.writable end feature {NONE} -- Status report l_after: BOOLEAN is -- Is there no valid cursor position to the right of cursor? -- (from LIST) do Result := (index = count + 1) end l_before: BOOLEAN is -- Is there no valid cursor position to the left of cursor? -- (from LIST) do Result := (index = 0) end l_off: BOOLEAN is -- Is there no current item? -- (from CHAIN) do Result := (index = 0) or (index = count + 1) end feature -- Status setting compare_objects is -- Ensure that future search operations will use equal -- rather than = for comparing references. -- (from CONTAINER) require -- from CONTAINER changeable_comparison_criterion do object_comparison := True ensure -- from CONTAINER object_comparison end compare_references is -- Ensure that future search operations will use = -- rather than equal for comparing references. -- (from CONTAINER) require -- from CONTAINER changeable_comparison_criterion do object_comparison := False ensure -- from CONTAINER reference_comparison: not object_comparison end feature -- Cursor movement back is -- Move cursor to previous item, cyclically. -- (from CIRCULAR) require -- from BILINEAR not_before: not before do if isfirst then internal_exhausted := True end standard_back if standard_before then standard_finish end end finish is -- Move cursor to last position. -- (No effect if empty) -- (from CHAIN) do if not is_empty then go_i_th (count) end ensure then -- from CHAIN at_last: not is_empty implies islast end forth is -- Move cursor to next item, cyclically. -- (from CIRCULAR) require -- from LINEAR not_after: not after do if islast then internal_exhausted := True end standard_forth if standard_after then standard_start end ensure then -- from CIRCULAR moved_forth_at_end: (old index = count) implies (index = 1) end go_i_th (i: INTEGER) is -- Move cursor to i-th position from current start, cyclically. -- (from CIRCULAR) require -- from CHAIN valid_cursor_index: valid_cursor_index (i) require else -- from CIRCULAR index_big_enough: i >= 1 not_empty: not is_empty do start move (i - 1) ensure -- from CHAIN position_expected: index = i end go_to (p: CURSOR) is -- Move cursor to position p. require -- from CURSOR_STRUCTURE cursor_position_valid: valid_cursor (p) local c_c: CIRCULAR_CURSOR do c_c ?= p if c_c /= void then list.go_to (c_c.cursor) internal_exhausted := c_c.internal_exhausted starter := c_c.starter end end move (i: INTEGER) is -- Move cursor to i-th item from current position, -- cyclically. -- (from CIRCULAR) local real_move, counter, start_index: INTEGER do if i /= 0 and count > 0 then start_index := index real_move := i \\ count if real_move < 0 then real_move := count + real_move end from until counter = real_move loop forth counter := counter + 1 end if (start_index + i > count) or (start_index + i < 1) then internal_exhausted := True end end ensure -- from CHAIN too_far_right: (old index + i > count) implies exhausted too_far_left: (old index + i < 1) implies exhausted expected_index: (not exhausted) implies (index = old index + i) end search (v: like item) is -- Move to first position (at or after current -- position) where item and v are equal. -- If structure does not include v ensure that -- exhausted will be true. -- (Reference or object equality, -- based on object_comparison.) -- (from BILINEAR) do if before and not is_empty then forth end sequential_search (v) ensure -- from LINEAR object_found: (not exhausted and object_comparison) implies equal (v, item) item_found: (not exhausted and not object_comparison) implies v = item end set_start is -- Select current item as the first. require -- from CIRCULAR not_empty: not is_empty do starter := standard_index internal_exhausted := False end start is -- Move to position currently selected as first. do internal_exhausted := False if starter = 0 then standard_start starter := 1 else standard_go_i_th (starter) if standard_off then standard_start end end ensure then -- from CHAIN at_first: not is_empty implies isfirst end feature {NONE} -- Cursor movement l_go_i_th (i: INTEGER) is -- Move cursor to i-th position. -- (from CHAIN) require -- from