An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# DSA-Supreme-Batch
# Types of Data Structures
Data structures are broadly classified into two categories:

![alt text](https://github.com/user-attachments/assets/865c9dac-790f-4a62-9d8e-0ea8a19c8d2a)

## 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