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

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

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.