 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IStack ¶
type IStack interface {
	Push(interface{})
	Pop() (interface{}, error)
	Top() (interface{}, error)
	Size() int
	IsEmpty() bool
}
    IStack defines the stack interface
type Queue ¶
type Queue struct {
	// contains filtered or unexported fields
}
    Queue implemented using linked list
type StackA ¶
type StackA struct {
	// contains filtered or unexported fields
}
    StackA implemented using array
type StackL ¶
type StackL struct {
	// contains filtered or unexported fields
}
    StackL implemented using linked list
 Click to show internal directories. 
   Click to hide internal directories.