https://github.com/madalinioana/char-stack
Integration of CharStack class in C++
https://github.com/madalinioana/char-stack
dynamic-memory-allocation object-oriented-programming stack
Last synced: 3 months ago
JSON representation
Integration of CharStack class in C++
- Host: GitHub
- URL: https://github.com/madalinioana/char-stack
- Owner: madalinioana
- Created: 2024-03-18T18:59:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-24T22:52:43.000Z (about 1 year ago)
- Last Synced: 2025-01-21T21:16:14.257Z (5 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.