摘要: 实现思路: 1)first指针,指向第一个节点。辅助指针指向当前节点 2)每创建新节点,next都重新指向第一个节点,形成环 C#实现代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 5 na 阅读全文
posted @ 2020-04-14 22:29 小橘·Huang 阅读(165) 评论(0) 推荐(0)