Skip to content
Rishikesh Agrawani edited this page Dec 27, 2016 · 12 revisions

Singly linked list

  • func CreateNode(compulsoryData interface{}, data ...interface{}) *Node
  • func InsertSllNodeAtBeginning(start *Node, node *Node) *Node
  • func InsertSllNodeAtEnd(start *Node, node *Node) *Node
  • func ShowNodesHierarchy(start *Node) error