https://github.com/rahuljsaliaan/data-structures-and-algorithms--javascript
A collection of clean and efficient Data Structures and Algorithms implemented in JavaScript to help learn and practice core programming concepts.
https://github.com/rahuljsaliaan/data-structures-and-algorithms--javascript
algorithms-and-data-structures javascript problem-solving
Last synced: 5 months ago
JSON representation
A collection of clean and efficient Data Structures and Algorithms implemented in JavaScript to help learn and practice core programming concepts.
- Host: GitHub
- URL: https://github.com/rahuljsaliaan/data-structures-and-algorithms--javascript
- Owner: rahuljsaliaan
- Created: 2023-09-17T16:41:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-29T17:55:06.000Z (5 months ago)
- Last Synced: 2025-06-29T18:46:59.448Z (5 months ago)
- Topics: algorithms-and-data-structures, javascript, problem-solving
- Language: JavaScript
- Homepage:
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 📚 Data Structures and Algorithms (JavaScript)
Welcome to the **Data Structures and Algorithms** repository built with **JavaScript**!
This repo contains clean and well-organized implementations of popular **DSA topics** to help you learn, practice, and master your coding skills.
---
## 📂 Contents
| 📚 Topic | 📝 Description | 🔗 Link |
| --------------------------- | ----------------------------------------------------------- | --------------------------------------------------------------------------- |
| 💡 Problem Solving Approach | Learn how to break down problems into manageable steps | [📖 Read Guide](./Problem%20Solving%20Approach/Problem_Solving_Approach.md) |
| 🧩 Problem Solving Patterns | Discover reusable logic patterns for common coding problems | [🧠 Learn More](./Problem%20Solving%20Patterns/Problem_Solving_Patterns.md) |
| 🔁 Recursion | Understand the concept and use cases of recursive functions | [🔍 Dive In](./Recursion/Recursion.md) |
| 🔎 Searching Algorithms | Implement linear, binary, and other searching techniques | [👓 Overview](./Searching-Algorithms/Searching_Algorithms.md) |
| 🔃 Sorting Algorithms | Learn about sorting methods like bubble, quick, and merge | [📘 See Docs](./Sorting-Algorithms/Sorting_Algorithms.md) |
| 🗃️ Data Structures | Explore stacks, queues, trees, linked lists, and more | [🛠️ Go to Docs](./Data-Structures/Data_Structures.md) |
---
## 🐞 Debug Configuration (VS Code)
To easily debug any JavaScript file using **Visual Studio Code**, follow these steps:
1. 📝 Open the JavaScript file you want to run.
2. ▶️ Press `F5` or click on the **Run and Debug** icon in the sidebar.
3. 🛠️ Add the following config in `.vscode/launch.json` if it doesn't exist:
```json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Current File",
"program": "${file}",
"console": "integratedTerminal",
"skipFiles": ["/**"]
}
]
}
```