Lab1
1) Simple JAVA classes. compile and run.
- download these files to your working directory, then compile and run it. Second and third class need command line argument to run correctly.
to compile and run the first file:
Javac HelloWorld1.java
java HelloWorld1
to compile and run the second file:
Javac HelloWorld2.java
java HelloWorld2 csi2114
2) Simple classes about link lists. There are 5 classes that builds link list based on the list_node class. see how each class builds the lists.