https://github.com/kalwar/basic_ds
a very basic data structures using js/reactjs
https://github.com/kalwar/basic_ds
data-structures palindrome-checker queue reactjs sorting-algorithms stack
Last synced: about 2 months ago
JSON representation
a very basic data structures using js/reactjs
- Host: GitHub
- URL: https://github.com/kalwar/basic_ds
- Owner: kalwar
- License: mit
- Created: 2022-10-30T09:54:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-30T10:00:33.000Z (over 3 years ago)
- Last Synced: 2025-03-11T04:33:12.753Z (over 1 year ago)
- Topics: data-structures, palindrome-checker, queue, reactjs, sorting-algorithms, stack
- Language: JavaScript
- Homepage:
- Size: 304 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures
This very simple and basic project is used for learning how to work with data structures using JS/React.
# Implemented DS
1. Palindrome checker
2. Sorting
- Bubble sort
- Selection sort
3. Stack
4. Queue
## 💻 Development Environment
Setup your development environment as follows:
1. Install project dependencies:
```
cd basic_ds
npm install
```
2. Run the app in the development mode:
```
npm start
```
# Tech stack
1. [React](https://reactjs.org/)
2. [Data structures](https://en.wikipedia.org/wiki/Data_structure)
# Use for reference
Use solely for reference material only.