DSA

Singly Linked List in C

Here you will learn about singly linked list in C. What is Singly Linked List (SLL)? The simplest kind of linked list is a singly liked list (SLL) which has one link per node. It has two parts, one part contains data and other contains address of next node. The structure of a node in a SLL …

Singly Linked List in C Read More »

Stack in C++ Using Linked List

Here you will learn about stack in C++ using a program example. Stack is an abstract datatype which follows Last In First Out (LIFO) principle. Basically stack has two operations namely push and pop.  push: inserting an element at the top of the stack pop: removing an element from the top of the stack Below …

Stack in C++ Using Linked List Read More »