linked list and graps | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

linked list and graps

explin for me

8th May 2021, 3:54 PM
karimireza77
karimireza77 - avatar
3 Respostas
+ 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