C# Class CodingPractice.Queues.LinkedQueue

always add at rear and delete from front
Inheritance: IQueue
Afficher le fichier Open project: cabhishek/algorithms-datastructures

Méthodes publiques

Méthode Description
dequeue ( ) : object
enqueue ( object item ) : void
isEmpty ( ) : bool
isFull ( ) : bool

Method Details

dequeue() public méthode

public dequeue ( ) : object
Résultat object

enqueue() public méthode

public enqueue ( object item ) : void
item object
Résultat void

isEmpty() public méthode

public isEmpty ( ) : bool
Résultat bool

isFull() public méthode

public isFull ( ) : bool
Résultat bool