https://github.com/nelsonbn/algorithms-data-structures-stack
Algorithms and Data Structures - Stack
https://github.com/nelsonbn/algorithms-data-structures-stack
algorithms data-structures stack
Last synced: 6 months ago
JSON representation
Algorithms and Data Structures - Stack
- Host: GitHub
- URL: https://github.com/nelsonbn/algorithms-data-structures-stack
- Owner: NelsonBN
- License: mit
- Created: 2024-04-19T22:48:29.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-02T13:30:40.000Z (about 1 year ago)
- Last Synced: 2025-03-02T14:28:50.851Z (about 1 year ago)
- Topics: algorithms, data-structures, stack
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithms and Data Structures - Stack
## Demos
| Demo | C# | Python |
| --- | --- | --- |
| With Array | [View](./src/Dotnet/1.StackWithArray/Program.cs) | [View](./src/Python/1.stack_with_array.py) |
| Resizing Array | [View](./src/Dotnet/2.StackWithResizingArray/Program.cs) | [View](./src/Python/2.stack_with_resizing_array.py) |
| With Linked List | [View](./src/Dotnet/3.StackWithLinkedList/Program.cs) | [View](./src/Python/3.stack_with_linked_list.py) |
## References
- [Other Algorithms & Data Structures](https://github.com/NelsonBN/algorithms-data-structures)