Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 1.12 KB

README.md

File metadata and controls

16 lines (14 loc) · 1.12 KB

stack-practice

Play with home grown stacks! Copy the files into a new Eclipse project.

Suggested approach

  • Check out the interface definining stacks of characters, ICharStack
  • Complete the linked list stack implementation, LinkedStack
  • Learn a different approach extending ArrayList, ExtendingStack
  • Finally, refine this array backed implementation and add a few methods, Stack
  • Now use the stack to complete Palindrome

Java docs