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

Singly linked list

To create a node with list of data

  • func CreateNode(compulsoryData interface{}, data ...interface{}) *Node

To insert a node at the beginning of the linked list

  • func InsertSllNodeAtBeginning(node *Node) *Node

To insert a node at the end of the linked list

  • func InsertSllNodeAtEnd(node *Node) *Node
Clone this wiki locally