swift-算法与数据结构-链表

链表结构图解:

数据结构设计思路:

ListList作为链表结构, 成员变量有size(元素个数)   ,  first 头结点结构,  定义结点数据结构 Node ;

节点数据结构的成员变量有element(存储的数据),  指向下一个节点的指针(next) , 尾结点next 指向null  


iOS技术支持

有问题的可以留言。

邮箱地址:[email protected]

地址:北京市中关村软件园

谢谢!

iOS program design & system consultation

if you have any question, please contact me with no hesitate

Email: [email protected]

Add: Zhongguancun Poftware Park, Peking,China

Thank you!

你可能感兴趣的:(swift-算法与数据结构-链表)