Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 405 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 405 Bytes

Java-BasicMethods


Created a Linked List method.
  • I did not import any library

LinkedListExample


Created a basic binary search tree.
Methods:
  • addNode()
  • showTree()
  • searchNode()
  • deleteNode()
  • minBts()
  • maxBts()

Created a basic stack array.
Methods:
  • push()
  • pop()
  • printStack()