Add exercise StringStack

This commit is contained in:
acp059 2020-05-27 14:02:06 +02:00
parent 23c0dad2a8
commit c2eb6994d3
1 changed files with 7 additions and 0 deletions

View File

@ -34,3 +34,10 @@ Code: 36 22 91 80
--- ---
# Implementierung StringStack
- Wir wollen zuerst gemeinsam und dann einzeln die Klasse 'StringStack' implementiern
- Ein 'StringStack' besteht aus mehreren 'StringNode's, die einen 'String' und den nachfolgenen 'StringNode' halten
- Methoden: 'push(String)', 'boolean isEmpty()', 'String pop()', String top()', 'int getDepth()' und 'boolean contains(String)'