note
	description: "Trees implemented using a linked list representation"
	library: "Free implementation of ELKS library"
	legal: "See notice at end of class."
	status: "See notice at end of class."
	names: linked_tree, tree, linked_list
	representation: recursive, linked
	access: cursor, membership
	contents: generic
	date: "$Date: 2018-12-15 18:06:16 +0000 (Sat, 15 Dec 2018) $"
	revision: "$Revision: 102608 $"

class 
	LINKED_TREE [G]

inherit
	DYNAMIC_TREE [G]
		rename
			empty as ll_empty
		export
			{NONE} ll_empty
		undefine
			child_after,
			child_before,
			child_item,
			child_off
		redefine
			new_cursor,
			parent
		select
			has,
			new_cursor
		end

	LINKABLE [G]
		rename
			right as right_sibling,
			put_right as l_put_right
		export
			{ANY} put, replace
			{LINKED_TREE} l_put_right, forget_right
		undefine
			copy,
			is_equal
		end

	LINKED_LIST [G]
		rename
			active as child,
			put_left as child_put_left,
			put_right as child_put_right,
			after as child_after,
			back as child_back,
			before as child_before,
			count as arity,
			cursor as child_cursor,
			duplicate as ll_duplicate,
			empty as ll_empty,
			is_empty as is_leaf,
			extend as child_extend,
			extendible as child_extendible,
			fill as ll_fill,
			finish as child_finish,
			first_element as first_child,
			forth as child_forth,
			Full as Ll_full,
			go_i_th as child_go_i_th,
			go_to as child_go_to,
			has as ll_has,
			index as child_index,
			isfirst as child_isfirst,
			islast as child_islast,
			item as child_item,
			last_element as last_child,
			make as ll_make,
			merge_left as ll_merge_left,
			merge_right as ll_merge_right,
			new_chain as new_tree,
			new_cursor as ll_new_cursor,
			off as child_off,
			prune as ll_prune,
			put as child_put,
			readable as child_readable,
			remove as remove_child,
			remove_left as remove_left_child,
			remove_right as remove_right_child,
			replace as child_replace,
			search as search_child,
			start as child_start,
			writable as child_writable
		export
			{ANY} child
			{NONE} ll_make, ll_has, ll_merge_left, ll_merge_right, ll_fill, ll_duplicate, Ll_full, ll_empty, ll_new_cursor
		undefine
			child_readable,
			is_leaf,
			child_writable,
			linear_representation,
			child_isfirst,
			child_islast,
			valid_cursor_index,
			copy,
			is_equal
		redefine
			child_cursor,
			first_child,
			new_cell,
			new_tree
		select
			is_leaf
		end

create 
	make

feature {NONE} -- Initialization

	make (v: like item)
			-- Create single node with item v.
		do
			put (v)
			ll_make
		ensure
				is_root
				is_leaf
		end
	
feature -- Access

	parent: detachable like new_cell
			-- Parent of current node

	first_child: like parent
			-- Leftmost child

	left_sibling: like parent
			-- Left neighbor (if any)
		local
			p: like parent
		do
			p := parent
			if p /= Void then
				from
					Result := p.first_child
				until
					Result = Void or else Result.right_sibling = Current
				loop
					Result := Result.right_sibling
				end
			end
		end

	child_cursor: LINKED_TREE_CURSOR [G]
			-- Current cursor position
		do
			create Result.make (child, child_after, child_before)
		end
	
feature -- Iteration

	new_cursor: LINKED_TREE_ITERATION_CURSOR [G]
			-- Fresh cursor associated with current structure
		do
			create Result.make (Current)
		end
	
feature {RECURSIVE_CURSOR_TREE}{RECURSIVE_CURSOR_TREE} -- Element change

	set_child (n: like parent)
			-- Set the child of parent to n.
		do
			child := n
		ensure then
			child_set: child = n
		end
	
feature -- Element change

	put_child (n: like new_cell)
			-- Add n to the list of children.
			-- Do not move child cursor.
		local
			c: like last_child
		do
			if object_comparison then
				n.compare_objects
			else
				n.compare_references
			end
			if is_leaf then
				first_child := n
				child := n
			else
				c := last_child
				if c /= Void then
					c.l_put_right (n)
				end
				if child_after then
					child := n
				end
			end;
			n.attach_to_parent (Current)
			arity := arity + 1
		end

	replace_child (n: like new_cell)
			-- Replace current child by n.
		do
			put_child_right (n)
			remove_child
		end

	put_child_left (n: like new_cell)
			-- Add n to the left of cursor position.
			-- Do not move cursor.
		do
			child_back
			put_child_right (n)
			child_forth
			child_forth
		end

	put_child_right (n: like new_cell)
			-- Add n to the right of cursor position.
			-- Do not move cursor.
		local
			c: like child
		do
			if object_comparison then
				n.compare_objects
			else
				n.compare_references
			end
			if child_before then
				n.l_put_right (first_child)
				first_child := n
			else
				c := child
				if c /= Void then
					n.l_put_right (c.right_sibling);
					c.l_put_right (n)
				end
			end;
			n.attach_to_parent (Current)
			arity := arity + 1
		end

	merge_tree_before (other: like new_cell)
			-- Merge children of other into current structure
			-- before cursor position. Do not move cursor.
			-- Make other a leaf.
		do
			attach (other)
			ll_merge_left (other)
		end

	merge_tree_after (other: like new_cell)
			-- Merge children of other into current structure
			-- after cursor position. Do not move cursor.
			-- Make other a leaf.
		do
			attach (other)
			ll_merge_right (other)
		end
	
feature -- Removal

	prune (n: like new_cell)
			-- Prune n from children.
		local
			l_child: like first_child
			left_child: like first_child
			c: like first_child
		do
			from
				l_child := first_child
			until
				l_child = Void or l_child = n
			loop
				left_child := l_child
				l_child := l_child.right_sibling
			end
			if l_child /= Void then
				if left_child /= Void then
					left_child.l_put_right (l_child.right_sibling)
					if child = n then
						child := left_child
					end
				else
					c := first_child
					if c /= Void then
						first_child := c.right_sibling
					end
					if n = child then
						child := first_child
					end
				end
				arity := arity - 1
				if is_leaf and not child_before then
					child_after := True
				end;
				n.attach_to_parent (Void);
				n.forget_right
			end
		end
	
feature -- Inapplicable

	forget_left
			-- Forget all left siblings.
		do
		end
	
feature {LINKED_TREE}{LINKED_LIST} -- Implementation

	new_cell (v: like item): like Current
			-- New cell containing v
		do
			create Result.make (v)
			if object_comparison then
				Result.compare_objects
			end;
			Result.attach_to_parent (Current)
		end

	new_tree: 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 (item)
		end

	clone_node (n: like Current): like Current
			-- Clone node n.
		do
			create Result.make (n.item);
			Result.copy_node (n)
		end

	copy_node (n: like Current)
			-- Copy content of n except tree data into Current.
		do
			standard_copy (n)
			arity := 0
			child := Void
			child_after := False
			child_before := True
			first_child := Void
			parent := Void
			right_sibling := Void
		end
	
feature {NONE} -- Implementation

	attach (other: like new_cell)
			-- Attach all children of other to current node.
		local
			cursor: CURSOR
			c: like child
		do
			cursor := other.child_cursor
			from
				other.child_start
			until
				other.child_off
			loop
				c := other.child
				if c /= Void then
					c.attach_to_parent (Current)
				end;
				other.child_forth
			end;
			other.child_go_to (cursor)
		end
	
invariant
	no_void_child: readable_child = child_readable

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_TREE

Generated by ISE EiffelStudio