Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LinkedLists

These classes will create a visual display of a linked list using the LinkedList and Link classes. The LinkedList class holds a number of Links that in turn hold an integer, and a memory adress to the next link.

Clase UML

Example

LinkedList:

@ 5eb0
┏━━━━━━━━━━━━━━━━┓
┃                ┃
┃ value: 37.00   ┃
┃  next: 5ed0    ┃
┃                ┃
┗━━━━━━━━━━━━━━━━┛

@ 5ed0
┏━━━━━━━━━━━━━━━━┓
┃                ┃
┃ value: 100.50  ┃
┃  next: 5ef0    ┃
┃                ┃
┗━━━━━━━━━━━━━━━━┛

@ 5ef0
┏━━━━━━━━━━━━━━━━┓
┃                ┃
┃ value: -17.50  ┃
┃  next: nullptr ┃
┃                ┃
┗━━━━━━━━━━━━━━━━┛

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages