C# Class CodingPractice.LinkedList.LinkedList

Inheritance: ListInterface
Exibir arquivo Open project: cabhishek/algorithms-datastructures

Public Properties

Property Type Description
list ListNode
numItems int

Protected Properties

Property Type Description
currentPos ListNode

Public Methods

Method Description
insert ( IComparable item ) : void
isThere ( IComparable item ) : bool

Protected Methods

Method Description
LinkedList ( ) : System

Method Details

LinkedList() protected method

protected LinkedList ( ) : System
return System

insert() public abstract method

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

isThere() public abstract method

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

Property Details

currentPos protected_oe property

protected ListNode currentPos
return ListNode

list public_oe property

public ListNode list
return ListNode

numItems public_oe property

public int numItems
return int