C# Class CodingPractice.Stacks.LinkedStack

Inheritance: IStack
Afficher le fichier Open project: cabhishek/algorithms-datastructures

Méthodes publiques

Méthode Description
LinkedStack ( ) : System
isEmpty ( ) : bool
isFull ( ) : bool
pop ( ) : void
push ( object item ) : void

Private Methods

Méthode Description
IStack ( ) : object

Method Details

LinkedStack() public méthode

public LinkedStack ( ) : System
Résultat System

isEmpty() public méthode

public isEmpty ( ) : bool
Résultat bool

isFull() public méthode

public isFull ( ) : bool
Résultat bool

pop() public méthode

public pop ( ) : void
Résultat void

push() public méthode

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