0
Could anyone explain me the syntax of linked lists data structure and how do they works in C++
The operations that I would understand is how can I add nodes in a linked lists data structure with simple instructions; moreover I would like to know the meaning of â->â in the syntax, and the use of pointers in this data structure.
5 Answers
0
thank you, i donât understand which is the meaning of -> and what is it used for
0
I want to implement my own linked lists data structure for the university. In some exercise it is required the usage and creation of linked lists; actually we donât use objective oriented programming already, weâll use it in few months, for now we only program in procedural programming.