note description: "Circular chains implemented as linked lists" library: "Free implementation of ELKS library" legal: "See notice at end of class." status: "See notice at end of class." names: linked_circular, ring, sequence representation: linked access: index, cursor, membership contents: generic date: "$Date: 2018-11-14 15:15:17 +0000 (Wed, 14 Nov 2018) $" revision: "$Revision: 102463 $" class LINKED_CIRCULAR [G] inherit DYNAMIC_CIRCULAR [G] undefine readable, isfirst, writable, is_equal redefine start, islast select remove, go_i_th, after, before, off, prune_all, prune, first, forth end LIST [G] rename after as l_after, before as l_before, remove as l_remove, first as l_first, off as l_off, prune as l_prune, prune_all as l_prune_all, go_i_th as l_go_i_th, forth as l_forth export {NONE} l_after, l_before, l_remove, l_first, l_off, l_prune, l_prune_all, l_go_i_th, l_forth undefine last, exhausted, move, valid_cursor_index, isfirst, readable, islast, start, writable end create make, make_from_iterable feature {NONE} -- Initialization make -- Create an empty list do create list.make end make_from_iterable (other: ITERABLE [G]) -- Create a circular chain with all items obtained from other. local l: like list do create l.make list := l across other as o loop l.extend (o.item) end end feature -- Measurement count: INTEGER_32 -- Number of items do Result := list.count end feature -- Element change replace (v: G) -- Replace current item by v. do list.replace (v) end merge_right (other: like Current) -- Merge other into current structure after cursor -- position. Do not move cursor. Empty other. do list.merge_right (other.list) end put_right (v: like item) -- Add v to the right of cursor position. -- Do not move cursor. do list.put_right (v) end put_front (v: like item) -- Add v to beginning. -- Do not move cursor. do list.put_front (v) end extend (v: like item) -- Add v to end. -- Do not move cursor. local e: BOOLEAN do e := is_empty; list.extend (v) if e then start end end merge_left (other: like Current) -- Merge other into current structure before cursor -- position. Do not move cursor. Empty other. do list.merge_left (other.list) end put_left (v: like item) -- Add v to the left of cursor position. -- Do not move cursor. do list.put_left (v) end feature -- Access item: G -- Current item do Result := list.item end cursor: CIRCULAR_CURSOR -- Current cursor position do create Result.make (list.cursor, internal_exhausted, starter) end feature -- Status report Full: BOOLEAN = False -- Is structured filled to capacity? (Answer: no.) readable: BOOLEAN -- Is there a current item that may be read? do Result := list.readable end valid_cursor (p: CURSOR): BOOLEAN -- Can the cursor be moved to position p? do if attached {CIRCULAR_CURSOR} p as c_c then Result := list.valid_cursor (c_c.cursor) end end writable: BOOLEAN -- Is there a current item that may be written? do Result := list.writable end isfirst: BOOLEAN -- 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 end islast: BOOLEAN -- 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 end feature -- Cursor movement go_to (p: CURSOR) -- Move cursor to position p. do if attached {CIRCULAR_CURSOR} p as c_c then list.go_to (c_c.cursor) internal_exhausted := c_c.internal_exhausted starter := c_c.starter end end set_start -- Select current item as the first. do starter := standard_index internal_exhausted := False end start -- 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 end feature -- Cursor movement l_forth do end feature -- Removal remove_left -- Remove item to the left of cursor position. -- Do not move cursor. require else count > 1 do if standard_isfirst then standard_finish remove else standard_remove_left end end remove_right -- Remove item to the right of cursor position. -- Do not move cursor. require else count > 1 do if standard_islast then standard_start remove finish else standard_remove_right end end feature {LINKED_CIRCULAR}{CIRCULAR} -- Implementation fix_start_for_remove -- Before deletion, update starting position if necessary. do if count = 1 then starter := 0 elseif starter = standard_index then if standard_islast then starter := 1 else starter := starter + 1 end end end starter: INTEGER_32 -- The position currently selected as first new_chain: like Current obsolete "Use explicit creation instead. See also explanations for `duplicate`. [2018-11-30]" -- A newly created instance of the same type. -- This feature may be redefined in descendants so as to -- produce an adequately allocated and initialized object. do create Result.make end list: LINKED_LIST [G] standard_after: BOOLEAN -- Is there no valid cursor position to the right of cursor? -- (Non-cyclically) do Result := list.after end standard_back -- Move cursor to previous element, non-cyclically. do list.back end standard_before: BOOLEAN -- Is there no valid cursor position to the left of cursor? -- (Non-cyclically) do Result := list.before end standard_finish -- Move cursor to last element. do list.finish end standard_forth -- Move cursor to next element, non-cyclically. do list.forth end standard_go_i_th (i: INTEGER_32) -- Move cursor to i-th element, non-cyclically. do list.go_i_th (i) end standard_index: INTEGER_32 -- Current cursor index, non-cyclically do Result := list.index end standard_isfirst: BOOLEAN -- Is cursor at first position, non-cyclically? do Result := list.isfirst end standard_islast: BOOLEAN -- Is cursor at last position, non-cyclically? do Result := list.islast end standard_move (i: INTEGER_32) -- Move cursor to i-th element, non-cyclically. do list.move (i) end standard_off: BOOLEAN do Result := list.off end standard_remove -- Remove, non-cyclically. do list.remove end standard_remove_left do list.remove_left end standard_remove_right do list.remove_right end standard_search (v: G) -- Search non-cyclically. do list.search (v) end standard_start -- Move cursor to first element. do list.start end note copyright: "Copyright (c) 1984-2018, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class LINKED_CIRCULAR
Generated by ISE EiffelStudio