https://github.com/celeroncoder/data-structures
This is the repo consisting all the data structures that I have learned till now.
https://github.com/celeroncoder/data-structures
Last synced: 4 months ago
JSON representation
This is the repo consisting all the data structures that I have learned till now.
- Host: GitHub
- URL: https://github.com/celeroncoder/data-structures
- Owner: celeroncoder
- Created: 2021-03-19T15:45:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T07:50:40.000Z (almost 5 years ago)
- Last Synced: 2025-01-15T21:29:15.758Z (about 1 year ago)
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures
Data Structures are the core of programming in general. It's how we store data in our system, which is foremost important of any application.
## Core Data-structures
These are the data structures on which the more complex one are made upon, they can be found in ant programming language and are most widely used and serves the purpose of a general application.
- _Strings_,
- _Integers_,
- _Decimal, Float, Double_,
- _Boolean_,
- _Lists_,
- _Objects or Dictionaries(in python)_
## Abstract Data Type
It is the way of defining any data-structure in terms of __mathematical operations__ or __logic__.
## Study Path
Generally we study data structures in the following prospects :-
- __Logic of storing data__,
- __Operations__,
- __Cost__ of Operations ( __Time Complexcity__, etc. ),
- __Implementation__