https://github.com/manishsinghtomar/dsa-supreme-batch
this is an repo of dsa practice notes and coding question
https://github.com/manishsinghtomar/dsa-supreme-batch
array cpp datastructures-algorithms linked-list oops searching-algorithms sorting-algorithms tree-structure
Last synced: about 1 year ago
JSON representation
this is an repo of dsa practice notes and coding question
- Host: GitHub
- URL: https://github.com/manishsinghtomar/dsa-supreme-batch
- Owner: manishsinghtomar
- Created: 2023-09-22T13:15:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-22T12:38:35.000Z (about 1 year ago)
- Last Synced: 2025-06-22T13:36:31.446Z (about 1 year ago)
- Topics: array, cpp, datastructures-algorithms, linked-list, oops, searching-algorithms, sorting-algorithms, tree-structure
- Language: C++
- Homepage:
- Size: 398 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DSA-Supreme-Batch
# Types of Data Structures
Data structures are broadly classified into two categories:

## Primitive Data Structures
Primitive data structures are the basic building blocks used to create more complex structures. They include:
• Integers: Whole numbers.
• Floats: Decimal numbers.
• Characters: Single symbols or letters.
• Booleans: True or false values.
## Non-Primitive Data Structures
Non-primitive data structures are more complex and can be divided into two types:
### Linear Data Structures: Elements are arranged in a linear sequence.
### Non-Linear Data Structures: Elements are arranged in a hierarchical or network-like structure.
# There are 6 types of tokens in C++ :
## 1.Keyword
## 2.Identifiers
## 3.Constants
## 4.Strings
## 5.Special symbols
## 6.Operators