Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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++

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.