0
linked list and graps
explin for me
3 Réponses
+ 1
Linked list are data structures that point in a single direction:
https://www.sololearn.com/post/1076823/?ref=app
They are based on a node with two variables, one is the information to be saved and the other variable is the next node.
The code would look something like this:
https://www.sololearn.com/post/1076825/?ref=app
In this way we keep nodes within other nodes, which point to a single address.
To access these data, save data, change data, etc., the following code is used:
https://www.sololearn.com/post/1076827/?ref=app
(Although the code may vary depending on your source, its functions are the same)
0
Linked-in or Linked list?
0
André PM linked list