Skip to content
/ DSA Public

data structure and algorithm course implementations in different languages using cpp, java, c , python or js

License

Notifications You must be signed in to change notification settings

4zaax/DSA

Repository files navigation

DSA

Data structure and Algorithm(DSA) course implementations in different languages using cpp, java, c and python

DSA
├── .vscode/                                  (editor settings)
├── AVL/                                      (AVL Tree implementations)
├── BST/                                      (Binary Search Tree implementations)
├── Heap/                                     (Heap implementations)
├── MaxHeap/                                  (Max Heap implementations)
├── Stack-Queue/                              (Stack + Queue implementations)
├── Trie/                                     (Trie implementations)
├── singly-linked-list/
│   ├── cpp
│   │   ├── traverse
│   │   ├── recursively traversal
│   │   ├── insert
│   │   │   ├── insert at front
│   │   │   ├── insert at end
│   │   │   └── insert at pos
│   │   ├── reverse
│   │   │   ├── stack call reverse method
│   │   │   ├── iterative reversing method
│   │   │   └── recursively reversing method  (*important*)
│   │   └── delete
│   │       ├── del_begin
│   │       ├── del_end
│   │       └── del_by_pos
│   ├── java
│   │   ├── traverse
│   │   ├── insert at front
│   │   └── insert at end
│   └── python
│       ├── traverse
│       ├── insert at front
│       ├── insert at pos
│       └── reverse
│           └── recursively reversing method  (*important*)
├── sortMethods/                              (sorting algorithms)
├── output/                                   (saved outputs)
├── .gitignore
├── LICENSE                                   (MIT)
├── README.md
├── package.json
└── package-lock.json

About

data structure and algorithm course implementations in different languages using cpp, java, c , python or js

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published