UNPKG

gxc-js-data-structure

Version:

Use JavaScript to implement some data structures and algorithms

12 lines (11 loc) 275 B
export declare class Stack { private _items; constructor(items?: Array<any>); get [Symbol.toStringTag](): string; push(element: any): any[]; pop(): any; peek(): any; isEmpty(): boolean; get size(): number; toString(): string; }