https://github.com/yuweaec/data-structures-and-algorithms
All Linear and non linear data structures with sorting problem sets
https://github.com/yuweaec/data-structures-and-algorithms
c data-structures-and-algorithms dsa dsa-algorithm dsa-practice sorting sorting-algorithms
Last synced: 3 months ago
JSON representation
All Linear and non linear data structures with sorting problem sets
- Host: GitHub
- URL: https://github.com/yuweaec/data-structures-and-algorithms
- Owner: YuweAEC
- Created: 2023-07-07T06:13:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-19T17:30:01.000Z (over 1 year ago)
- Last Synced: 2025-01-21T06:27:37.343Z (5 months ago)
- Topics: c, data-structures-and-algorithms, dsa, dsa-algorithm, dsa-practice, sorting, sorting-algorithms
- Language: C
- Homepage:
- Size: 103 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures and Algorithms
## Title
**Problem Solving with Data Structures**## Introduction
**DSA (Data Structures and Algorithms)**, also known as **PSDS (Problem Solving Data Structures)**, is essential for writing efficient code. It involves organizing and managing data to solve complex problems effectively. This repository focuses on both linear and non-linear data structures to enhance problem-solving skills.### Linear Data Structures
Linear data structures store elements sequentially, facilitating easy traversal. Examples include:
- **Arrays**: Elements stored in contiguous memory locations.
- **Linked Lists**: Nodes containing elements and references to the next node.### Non-Linear Data Structures
Non-linear data structures offer more complex arrangements, making traversal more challenging. These structures include trees, graphs, and hash tables.**Sorting** is crucial for arranging data in preferred orders, facilitating efficient searching and retrieval.
## Authors
- **Yuvraj Singh**
- **Gaurav Singh**## Acknowledgements
- **Gaurav Singh**
This README provides a comprehensive overview of data structures, emphasizing the importance of problem-solving skills and efficient coding practices.