An open API service indexing awesome lists of open source software.

https://github.com/prabin-acharya/data-structures

Data Structures in C++
https://github.com/prabin-acharya/data-structures

c c-plus-plus data-structures data-structures-and-algorithms

Last synced: about 2 months ago
JSON representation

Data Structures in C++

Awesome Lists containing this project

README

        

Contents:

list.cpp

LinkedList.cpp : Implementation of list of numbers with Linked List.

LinkedList1.cpp : Inserting a node at beginning of Linked List.

LinkedList2.cpp : Inserting a node at nth position of LInked List.

LinkedList3.cpp : Delete a node at nth position in Linked list.
Dynamic Memory Allocation;stack and queue

LinkedList4.cpp : Reverse a linked List -Iterative method.
Head as a local variable.Functions with head as arguments and return-type.

LinkedList5.cpp : Print Linked List using Recursion / Recursive traversal of linked list.

LinkedList6.cpp : Reverse a linked list using recursion.

DoublyLinkedList : Implementation of DoublyLinkedList and various operations on it.

Stack_array.cpp : Stack - Array Implementation.