C# 클래스 CodingPractice.Queues.LinkedQueue

always add at rear and delete from front
상속: IQueue
파일 보기 프로젝트 열기: cabhishek/algorithms-datastructures

공개 메소드들

메소드 설명
dequeue ( ) : object
enqueue ( object item ) : void
isEmpty ( ) : bool
isFull ( ) : bool

메소드 상세

dequeue() 공개 메소드

public dequeue ( ) : object
리턴 object

enqueue() 공개 메소드

public enqueue ( object item ) : void
item object
리턴 void

isEmpty() 공개 메소드

public isEmpty ( ) : bool
리턴 bool

isFull() 공개 메소드

public isFull ( ) : bool
리턴 bool