https://github.com/vncsmyrnk/javalistexample
https://github.com/vncsmyrnk/javalistexample
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vncsmyrnk/javalistexample
- Owner: vncsmyrnk
- License: mit
- Created: 2021-09-24T02:18:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-03T19:31:10.000Z (over 3 years ago)
- Last Synced: 2025-02-14T22:45:29.804Z (4 months ago)
- Language: Java
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# javaListExample
Basic list implementantion in Java.
In computer science, a list or sequence is an abstract data type that represents a finite number of ordered values, where the same value may occur more than once. (Wikipedia)
## Run
### Linear example
```
cd src/
javac ListBuilder.java
java ListBuilder
```### Interactive example
```
cd src/
javac ListInteractive.java
java ListInteractive
```