linked list and graps | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

linked list and graps

explin for me

8th May 2021, 3:54 PM
karimireza77
karimireza77 - avatar
3 Answers
+ 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)
8th May 2021, 6:51 PM
André Peralta Maya
André Peralta Maya - avatar
0
Linked-in or Linked list?
8th May 2021, 6:12 PM
André Peralta Maya
André Peralta Maya - avatar
0
André PM linked list
8th May 2021, 6:13 PM
karimireza77
karimireza77 - avatar