hetero.txt

来自「It is an ebook about data structures,mai」· 文本 代码 · 共 10 行

TXT
10
字号
If you are using C language to implement the heterogeneous linked list, what pointer type will you use? 

Discuss it!          


The heterogeneous linked list contains different data types in its nodes and we need a link, pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type. 


 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?