C# 클래스 CodingPractice.LinkedList.LinkedList

상속: ListInterface
파일 보기 프로젝트 열기: cabhishek/algorithms-datastructures

공개 프로퍼티들

프로퍼티 타입 설명
list ListNode
numItems int

보호된 프로퍼티들

프로퍼티 타입 설명
currentPos ListNode

공개 메소드들

메소드 설명
insert ( IComparable item ) : void
isThere ( IComparable item ) : bool

보호된 메소드들

메소드 설명
LinkedList ( ) : System

메소드 상세

LinkedList() 보호된 메소드

protected LinkedList ( ) : System
리턴 System

insert() 공개 추상적인 메소드

public abstract insert ( IComparable item ) : void
item IComparable
리턴 void

isThere() 공개 추상적인 메소드

public abstract isThere ( IComparable item ) : bool
item IComparable
리턴 bool

프로퍼티 상세

currentPos 보호되어 있는 프로퍼티

protected ListNode currentPos
리턴 ListNode

list 공개적으로 프로퍼티

public ListNode list
리턴 ListNode

numItems 공개적으로 프로퍼티

public int numItems
리턴 int