Data Structure By Protector RTD

Folder Structure

The workspace contains two folders by default, where:

  • lib: the folder to maintain dependencies

  • src:: The folder with implementation Data structure

    • main:
      • java:
        • linked_list: The folder where my Linked List implementation is located. Also in the folder there will be tests that can be viewed and run
        • binary_tree: The folder where my Binary Tree implementation is located.
    • test:
      • java: The folder with test

Build up

  • javac Main.java
  • jar cfev out.jar Main Main.class linked_list/*
  • java -jar out.jar