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 ответов
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.