Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
elianalopez authored Dec 1, 2020
1 parent 93b4e11 commit 131ef6c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,18 @@ These are the following operations of the unordered linked list:
The ordered list is somewhat similar to the unordered list, but what differentiates the two is the that the order list will always keep the items of the list in some sort of ordered, whether it be alphabetical or numerical.

For example if we wanted to create an ordered list of U.S. cities and added them in this following order:
<center> 'Autsin' << 'Chicago' << 'New York' << 'Boston' </center>

<p align="center">
'Austin' << 'Chicago' << 'New York' << 'Boston'
</p>

This would be the output of our list:

<p align="center">
``` ['Austin', 'Boston', 'Chicago', 'New York'] ```
</p>



#### Ordered List ADT

Expand Down

0 comments on commit 131ef6c

Please sign in to comment.