Skip to content
Sandeep SV edited this page Dec 11, 2020 · 1 revision

Welcome to the data structure wiki! All of these code is for educational purpose only. Types of data structure:

Linked List:

The node in the linkedlist will have

  1. data
  2. pointer to the next node

The above example uses C++ to do the following operation:

  1. Insert
  2. Delete
  3. Delete from the kth node from the end (Interesting problem)
  4. Print

Linked list data structure is advised to be used when the problem statement does not involve contiguous memory location.

To be continued....

Clone this wiki locally