C# Class CodingPractice.LinkedList.UnsortedLinkedList

Inheritance: LinkedList
Show file Open project: cabhishek/algorithms-datastructures Class Usage Examples

Public Methods

Method Description
Print ( ) : void
delete ( IComparable item ) : void
insert ( IComparable item ) : void
isThere ( IComparable item ) : bool
recRev ( ListNode node, ListNode revNode ) : ListNode
recursiveReverse ( ) : void
reverse ( ) : void

Private Methods

Method Description
print ( ListNode node ) : void

Method Details

Print() public method

public Print ( ) : void
return void

delete() public method

public delete ( IComparable item ) : void
item IComparable
return void

insert() public method

public insert ( IComparable item ) : void
item IComparable
return void

isThere() public method

public isThere ( IComparable item ) : bool
item IComparable
return bool

recRev() public method

public recRev ( ListNode node, ListNode revNode ) : ListNode
node ListNode
revNode ListNode
return ListNode

recursiveReverse() public method

public recursiveReverse ( ) : void
return void

reverse() public method

public reverse ( ) : void
return void