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

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

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)