An open API service indexing awesome lists of open source software.

https://github.com/vncsmyrnk/javalistexample


https://github.com/vncsmyrnk/javalistexample

Last synced: about 2 months ago
JSON representation

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
```