IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 数据结构 —— 顺序表和链表 -> 正文阅读

[数据结构与算法]数据结构 —— 顺序表和链表

一、顺序表

1、长度为 n 的顺序表 L,编写一个时间复杂度为 O(n),空间复杂度为O(1) 的算法,该算法删除线性表中所有值为 x 的数据元素。?

方法一:定义指针 index,遍历数组的元素,当元素的值不为 x 时,将当前元素前置到 index 位置上,同时 index 自增。

def function(nums, x):
    index = 0
    for i in range(0, len(nums)):
        if nums[i] != x:
            nums[index] = nums[i]
            index += 1
    print(nums[0: index])

方法二:定义变量 count,用于统计值为 x 的数量,遍历数组的元素,当元素的值不为 x,将下标为 i 的元素前置到 i - count 的位置。

def function(nums, x):
    count = 0
    for i in range(0, len(nums)):
        if nums[i] == x:
            count += 1
        else:
            nums[i - count] = nums[i]
    print(nums[0: len(nums) - count])

2、从顺序表中删除所有其值重复的元素,使表中所有元素的值均不相同

思路:定义指针 index,遍历数组的元素,当元素 nums[index] 不等于 nums[i] 时,说明 nums[index] 不需要被删除,所以,index 先自增,然后,将当前元素前置到 index 位置上。

举例说明:

def function(nums):
    index = 0
    for i in range(1, len(nums)):
        if nums[index] != nums[i]:
            index += 1
            nums[index] = nums[i]
    print(nums[0: index + 1])

二、链表

引入头结点后,第一个结点的位置被存放在头结点的指针域中,有点如下:

  • 在链表中的第一个位置和其他位置上的结点操作一致,无须进行特殊处理;
  • 空链表和非空链表的处理一致。

尾插法建表

class ListNode:
    def __init__(self, val=0, next=None):
        self.val = val
        self.next = next


def create_link_list(nums):
    head = ListNode(0)
    pointer = head
    for i in nums:
        temp = ListNode(i)
        pointer.next = temp
        pointer = pointer.next
    return head


create_link_list([1, 2, 3, 4, 5])

遍历链表

def print_link(head):
    pointer = head.next
    while pointer is not None:
        print(pointer.val)
        pointer = pointer.next

1、头插法实现单链表反转或者就地逆置单链表

def function(head):
    pointer = head.next
    p_index = ListNode(0)
    head = ListNode(0)
    while pointer is not None:
        p_index = pointer
        pointer = pointer.next
        p_index.next = head.next
        head.next = p_index

2、设 head 为带头结点的单链表,编写算法实现从尾到头反向输出每个节点的值

def function(head):  # head 链表参照尾插法自己创建,输入列表,输出链表
    stack = Stack()  # Stack 是作者基于列表封装的类,实现了栈的功能

    pointer = head.next
    while pointer is not None:
        stack.push(pointer.val)
        pointer = pointer.next

    while not stack.is_empty():
        print(stack.pop())

3、有一个带头结点的单链表 head,涉及一个算法使其元素递增有序。

思路:插入排序法实现链表的排序

def function(head):

    pointer = head.next
    head = ListNode(0)

    while pointer is not None:
        p_index = pointer
        pointer = pointer.next

        temp_index = head
        while temp_index.next is not None and temp_index.next.val < p_index.val:
            temp_index = temp_index.next

        p_index.next = temp_index.next
        temp_index.next = p_index

4、给定两个单链表,编写算法找出两个链表的公共结点。

思路:如果链表有公共结点,那么,两个链表从公共结点到尾结点一定是相同的,所以,先将其中较长的链表遍历至和较短的链表相同长度,然后,同时遍历并判断当前两个链表的结点是否相同。

def getIntersectionNode(headA, headB):
    countA = 0
    countB = 0

    index_A = headA
    while index_A is not None:
        countA += 1
        index_A = index_A.next

    index_B = headB
    while index_B is not None:
        countB += 1
        index_B = index_B.next

    distance = 0
    long_link = ListNode(0)
    short_link = ListNode(0)

    if countA - countB > 0:
        distance = countA - countB
        long_link = headA
        short_link = headB
    else:
        distance = countB - countA
        long_link = headB
        short_link = headA

    for i in range(0, distance):
        long_link = long_link.next
    
    while long_link is not None:
        if long_link == short_link:
            return long_link
        long_link = long_link.next
        short_link = short_link.next
    
    return None

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-10-08 21:07:03  更:2022-10-08 21:11:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 19:42:08-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码