Skip to content

Commit 131ef6c

Browse files
authored
Update README.md
1 parent 93b4e11 commit 131ef6c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,18 @@ These are the following operations of the unordered linked list:
366366
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.
367367

368368
For example if we wanted to create an ordered list of U.S. cities and added them in this following order:
369-
<center> 'Autsin' << 'Chicago' << 'New York' << 'Boston' </center>
369+
370+
<p align="center">
371+
'Austin' << 'Chicago' << 'New York' << 'Boston'
372+
</p>
373+
374+
This would be the output of our list:
375+
376+
<p align="center">
377+
``` ['Austin', 'Boston', 'Chicago', 'New York'] ```
378+
</p>
379+
380+
370381

371382
#### Ordered List ADT
372383

0 commit comments

Comments
 (0)