Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madalinioana/char-stack
An implementation of CharStack class in C++
https://github.com/madalinioana/char-stack
dynamic-memory-allocation object-oriented-programming stack
Last synced: about 1 month ago
JSON representation
An implementation of CharStack class in C++
- Host: GitHub
- URL: https://github.com/madalinioana/char-stack
- Owner: madalinioana
- Created: 2024-03-18T18:59:04.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-24T22:52:43.000Z (9 months ago)
- Last Synced: 2024-03-25T22:38:21.330Z (9 months ago)
- Topics: dynamic-memory-allocation, object-oriented-programming, stack
- Language: C++
- Homepage:
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CharStack
This project contains the implementation of a CharStack class in C++, representing a dynamically implemented character stack over a singly linked list structure. The CharStack class provides functionalities such as adding (Push) and removing (Pop) elements from the stack, checking if the stack is empty (IsEmpty), reversing a string, and more. The implementation follows the principles of object-oriented programming and offers a simple and user-friendly interface for manipulating the character stack.