package main

import (
"fmt"
) type ListNode struct {
Val int
Next *ListNode
}
type List struct {
headNode *ListNode //头节点
} func main() { //res := letcode.Divide(434, 423)
//fmt.Println(res) headNode := &ListNode{} listData := headNode
Insert(1, listData, headNode)
Insert(2, listData, headNode)
Insert(4, listData, headNode) res := Find(2, listData)
fmt.Println(res) //listData2 := headNode
//
//Insert(4, listData2, headNode)
//Insert(3, listData2, headNode)
//Insert(2, listData2, headNode) //PrintList(listData) //res := MergeTwoLists(listData, listData2)
//fmt.Println(res)
} //删除节点
func Delete(value int, list *ListNode) {
pPrev := FindPrevious(value, list)
_ = pPrev
p := Find(value, list)
pPrev = p.Next
p = nil
} // FindPrevious ...
func FindPrevious(value int, list *ListNode) *ListNode {
p := list
for p.Next != nil && p.Next.Val != value {
p = p.Next
}
return p
} // 找出链表里面的(不安全)
func Find(value int, list *ListNode) *ListNode { p := list
for p.Val != value {
p = p.Next
}
return p } // 测试是否为最后节点 ...
func IsLast(list *ListNode) bool {
return list.Next == nil
} // 测试链表是否为空 ...
func isEmpty(list *ListNode) bool {
return list == nil
} // 打印链表 ...
func PrintList(list *ListNode) { if list.Next != nil {
fmt.Println(list.Val)
PrintList(list.Next)
} else {
fmt.Println(list.Val)
}
} // 合并两个有序的单链表 ...
func MergeTwoLists(l1 *ListNode, l2 *ListNode) *ListNode {
if l1 == nil {
return l2
}
if l2 == nil {
return l1
}
var res *ListNode
if l1.Val >= l2.Val {
res = l2
res.Next = MergeTwoLists(l1, l2.Next)
} else {
res = l1
res.Next = MergeTwoLists(l1.Next, l2)
}
return res
} // 插入节点 头插法
func Insert(value int, list *ListNode, position *ListNode) {
tempCell := new(ListNode)
//fmt.Println("++++", tempCell)
if tempCell == nil {
fmt.Println("out of space!")
}
tempCell.Val = value
tempCell.Next = position.Next
position.Next = tempCell
}

  

go中单链表的更多相关文章

  1. C++中单链表的建立和操作

    准备数据 准备在链表操作中需要用到的变量及数据结构 示例代码如下: struct Data //数据结点类型 { string key; //关键字 string name; int age; }; ...

  2. Leetcode中单链表题总结

    以下是个人对所做过的LeetCode题中有关链表类型题的总结,博主小白啊,若有错误的地方,请留言指出,谢谢. 一.有关反转链表 反转链表是在单链表题中占很大的比例,有时候,会以各种形式出现在题中,是比 ...

  3. 【python中单链表的实现】——包括初始化、创建、逆序、遍历等

    # coding=utf-8 class mynode(object): def __init__(self, data, nextnode = None): self.data = data sel ...

  4. JAVA 链表操作:循环链表

    主要分析示例: 一.循环链表简述 二.单链表循环链表 三.双链表循环链表 一.循环链表简述 循环链表即链表形成了一个循环的结构,尾节点不再指向NULL,而是指向头节点HEAD,此时判定链表的结束是尾节 ...

  5. java实现单链表常见操作

    一.概述: 本文主要总结单链表常见操作的实现,包括链表结点添加.删除:链表正向遍历和反向遍历.链表排序.判断链表是否有环.是否相交.获取某一结点等. 二.概念: 链表: 一种重要的数据结构,HashM ...

  6. Java实现链表的常见操作算法

    链表分为单链表,双向链表和循环链表,是一种链式存储结构,由一个个结点链式构成,结点包含数据域和指针域,其中单链表是只有一个指向后驱结点的指针,双向链表除头结点和尾结点外,每个结点都有一个前驱指针和一个 ...

  7. PTA之求单链表结点的阶乘和

    本题要求实现一个函数,求单链表L结点的阶乘和.这里默认所有结点的值非负,且题目保证结果在int范围内. 时间限制: 400ms 内存限制: 64MB 代码长度限制: 16KB 函数接口定义: int ...

  8. 无头结点的单链表(C语言)

    1.单链表: 在顺序表中,用一组地址连续的存储单元来一次存放线性表的结点,因此结点的逻辑顺序与物理顺序是一致的.但链表却不同,链表是用一组任意的存储单元来存放 线性表的结点,这组存储单元可以是连续的, ...

  9. PTA基础编程题目集6-6求单链表结点的阶乘和(函数题)

    本题要求实现一个函数,求单链表L结点的阶乘和.这里默认所有结点的值非负,且题目保证结果在int范围内. 函数接口定义: int FactorialSum( List L ); 其中单链表List的定义 ...

随机推荐

  1. 部署Qt应用时候报错0xc000007b

    情况: 在开发环境可以运行,部署到其他电脑无法运行: 排错:百度.谷歌了很多方法不行,后来发现添加了Qt\5.11.0\mingw53_32\bin环境变量,程序执行正常,去掉就报错:猜测估计是dll ...

  2. python阅读目录

    一.python基础--列表.元祖.字典.集合 二.1231 三.12121

  3. linux终端窗口字体缩放快捷键

    环境:ubuntu16.04, 打开终端,有时候log输出一行显示不下 ‘ctrl’ + ‘-’字体缩小,一行显示更多的内容 ‘ctrl’ + ‘shift’ + ‘+’字体变大

  4. js实现软键盘

    <p><img id="img" onclick="javascript:var s=document.createElement('script'); ...

  5. 【EMV L2】Application Usage Control

    [Application Usage Control] Tag9F07,卡片数据,2bytes: Indicates issuer’s specified restrictions on the ge ...

  6. jmeter 上传附件脚本报Non HTTP response code: java.io.FileNotFoundException

    如果上传附件报如下错误,就需要把附件放到和脚本同一路径下就解决了

  7. JAVA日常之二

    一.装箱.拆箱 int i=1; Integer iobj=i;(自动装箱) 简单理解为,将基本数据类型(i)经过装箱变成对象(iobj): Integer iobj; int i= iobj;(自动 ...

  8. ccf-命令行选项-201403-3

    分析: 这道题不是很难 用了一个split()函数 核心是: 对命令选项的判断 不要一个字符字符的判断 要一项一项的判断 比如ab:m: 分析步骤 (1) 读取一个字符(2)判断下一步是否有字符,下一 ...

  9. js 数字随机滚动(数字递增) 每日凌晨回到原点,重新计算

    html: <div class="textMon"> <!--<img src="./img/20180830160315.png" ...

  10. 小程序wx.request的封装

    第一次做小程序项目,这个封装方法是同学推荐的一个网址,对我帮助很大,如果想看代码部分,请看网址详细介绍 网络请求都写在Page里,每个请求都要重复的写wx.request以及一些基础配置: 每个页面里 ...