All About C++

Get Pure Concepts of C++

Wednesday 10 February 2016

What is singly link list in data structure

Singly link list

In Singly link list every previous node has address of its next node.address of first node is in head and address part of last node is NULL.

Structure of a singly link list is

Struct node
{int data;