C# Class CodingPractice.LinkedList.UnsortedLinkedList

Inheritance: LinkedList
Afficher le fichier Open project: cabhishek/algorithms-datastructures Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
print ( ListNode node ) : void

Method Details

Print() public méthode

public Print ( ) : void
Résultat void

delete() public méthode

public delete ( IComparable item ) : void
item IComparable
Résultat void

insert() public méthode

public insert ( IComparable item ) : void
item IComparable
Résultat void

isThere() public méthode

public isThere ( IComparable item ) : bool
item IComparable
Résultat bool

recRev() public méthode

public recRev ( ListNode node, ListNode revNode ) : ListNode
node ListNode
revNode ListNode
Résultat ListNode

recursiveReverse() public méthode

public recursiveReverse ( ) : void
Résultat void

reverse() public méthode

public reverse ( ) : void
Résultat void