C# Class CodingPractice.LinkedList.LinkedList

Inheritance: ListInterface
Show file 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 property

protected ListNode currentPos
return ListNode

list public property

public ListNode list
return ListNode

numItems public property

public int numItems
return int