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++
- Host: GitHub
- URL: https://github.com/prabin-acharya/data-structures
- Owner: prabin-acharya
- Created: 2021-05-18T18:20:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-23T16:00:42.000Z (about 3 years ago)
- Last Synced: 2025-02-09T19:43:43.907Z (3 months ago)
- Topics: c, c-plus-plus, data-structures, data-structures-and-algorithms
- Language: C++
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 queueLinkedList4.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.