Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LinkedList ¶
type LinkedList struct {
// contains filtered or unexported fields
}
func (*LinkedList) Append ¶
func (ll *LinkedList) Append(val int)
func (*LinkedList) Count ¶
func (ll *LinkedList) Count() int
func (*LinkedList) Display ¶
func (ll *LinkedList) Display()
func (*LinkedList) DisplayReverse ¶
func (ll *LinkedList) DisplayReverse()
func (*LinkedList) Prepend ¶
func (ll *LinkedList) Prepend(val int)
func (*LinkedList) RemoveAtBeg ¶
func (ll *LinkedList) RemoveAtBeg() int
func (*LinkedList) RemoveAtEnd ¶
func (ll *LinkedList) RemoveAtEnd() int
func (*LinkedList) Reverse ¶
func (ll *LinkedList) Reverse()
Click to show internal directories.
Click to hide internal directories.