Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivikramsahu/data-structure
Data-structure is not for interviews but to develop scalable software using those.
https://github.com/ivikramsahu/data-structure
algorithm computer-engineering computer-science data-structures
Last synced: 8 days ago
JSON representation
Data-structure is not for interviews but to develop scalable software using those.
- Host: GitHub
- URL: https://github.com/ivikramsahu/data-structure
- Owner: ivikramsahu
- Created: 2020-09-03T15:36:45.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-03T15:59:05.000Z (about 4 years ago)
- Last Synced: 2024-01-07T04:14:26.625Z (10 months ago)
- Topics: algorithm, computer-engineering, computer-science, data-structures
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overview of Data Structure.
📖 Learning computer science is everyones dream in 2020 but where to start and how to start...❓
I have being in the IT 🖥 for almost 4 years now and I wonder what we learn in academics 🎓 are not what we implement instead how we learn and follow those concepts is one of the key factor the we use in industries.
I will try to include all types of data-structures with examples.
# Table of Content
- Set 1 ( Linear data structure )
- Array
- Linked List
- Stack
- Queue
- Set 2
- Binary Tree
- BST
- Heap
- Hash
- Set 3
- Graph
- Trie
- Segement Tree
- suffix Tree# What is Data Structure?
Simplest form ↠ data in structured format.
It is a way of organizing data in the system so that it can be used effectively.
# Why Data structure?
The idea is to reduce the space and time 🕰 for different tasks (ie. space and time complexities) within the system.