原文地址:http://www.niu12.com/article/47
package main import "fmt" type ListNode struct {
Value int
Next *ListNode
} func main() {
one := makeListNode([]int{1, 2, 3})
for one != nil {
fmt.Println(one.Value)
one = one.Next
}
} func makeListNode(nums []int) *ListNode { if len(nums) == 0{
return nil
} res := &ListNode{
Value:nums[0],
} temp := res for i := 1; i < len(nums); i++ {
temp.Next = &ListNode{Value:nums[i],}
temp = temp.Next
} return res
}
相关文章
- 07-04关于单链表的习题练习(牛客网)(力扣)
- 07-04LeetCode 234.回文链表(快慢指针+反转单链表)
- 07-04判断单链表是否有环 + 找入环的第一个结点 + 找两个链表相交的起始结点
- 07-04算法 判断单链表是否有环 快慢指针法
- 07-04单链表反转,快慢指针解决链表的常见问题
- 07-04数据结构之单链表的实现
- 07-04基础数据结构-单链表
- 07-04数据结构之单链表
- 07-04数据结构之单链表
- 07-04【C数据结构】单链表接口函数逻辑解析与代码实现(含详细代码注释)