终结Linked List(三)

第一篇终结Linked List(一)终结Linked List(二)主要讲了单链表的基础知识,接下来的第二篇主要讲一些比较经典的问题。

一、Count()

给一个单链表和一个整数,返回这个整数在链表中出现了多少次。

/*
Given a list and an int, return the number of times
that int ocucurs in the list.
*/
int Count(struct node* head,int searchFor)
{
    int cnt = 0;
    struct node* cur = head;

    while (cur != NULL)
    {
        if (cur->data == searchFor)
            cnt++;
        cur = cur->next;
    }

    return cnt;
}

也可以用for循环实现。

二、GetNth()

给一个单链表和一个index,返回index位置上的数值,类似array[index]操作。

/*
Given a list and an index, return the data in the nth
node of the list. The nodes are numbered from 0.
Assert fails if the index is invalid (outside 0..length - 1).
*/
int GetNth(struct node* head,int index)
{
    int len = 0;
    struct node* cur = head;

    while (cur)
    {
        if (len == index)
        {
            return cur->data;
        }
        cur = cur->next;
        len++;
    }

    assert(0);  //如果走到这一行,表达式的值为假,断言失败
}

三、DeleteList()

给一个单链表,删除所有节点,使headNULL
删除链表{1,2,3}的示意图:

void DeleteList(struct node** headRef)
{
    struct node* cur = *headRef;  //deref headRef to get the real head

    while (*headRef)
    {
        cur = *headRef;
        *headRef = cur->next;
        free(cur);
    }
}

四、Pop()

给一个链表,删掉头节点,返回头节点的数据。
内存示意图:

/*
The opposite of Push().Takes a non-empty list and
remove the front node, and returns the data which was in that node.
*/
int pop(struct node** headRef)
{
    assert(*headRef != NULL);
    int ans = (*headRef)->data;  //pull out the data before the node is deleted

    struct node* cur = *headRef;
    *headRef = (*headRef)->next;   //unlink the head node for the caller
    free(cur);    //free the head node

    return ans;
}

五、InsertNth()

可以在[0,length]的任意位置插入指定元素。

/*
A more general version of Push().
Given a list, an index 'n' in the range 0..length,
and a data element, add a new node to the list so that
it has the given index.
*/
void InsertNth(struct node** headRef,int index,int data)
{
    //position 0 is a special case
    if (index == 0)
    {
        Push(headRef, data);
    }
    else
    {
        int cnt = 0;
        struct node* cur = *headRef;

        while (cnt < index - 1)
        {
            assert(cur != NULL);   //if this fails, the index was too big
            cur = cur->next;
            cnt++;
        }

        assert(cur != NULL);    //tricky:you have to check one last time

        Push(&(cur->next), data);
    }
}

这段代码坑有点多,可以通过画图或者单步跟踪的方法调试。
InsertNthTest()可以用来测试:

void InsertNthTest()
{
    struct node* head = NULL;   //start with the empty list

    InsertNth(&head, 0, 13);   //{13}
    InsertNth(&head, 1, 42);    //{13,42}
    InsertNth(&head, 1, 5);     //{13,5,42}
}

六、SortedInsert()

给定一个有序链表和一个节点,将该节点插入到合适的位置。
共有三种方法:
1、Uses special case code for the head end

void SortedInsert(struct node** headRef,struct node* newNode)
{
    //Special case for the head end
    if (newNode->data <= (*headRef)->data || *headRef == NULL)
    {
        newNode->next = *headRef;
        *headRef = newNode;
    }
    else
    {
        //Locate the node before the point of insertion
        struct node* cur = *headRef;
        while (cur->next && cur->next->data < newNode->data)
        {
            cur = cur->next;
        }
        newNode->next = cur->next;
        cur->next = newNode;
    }
}

2、Dummy node strategy for the head end
dummy node这种方法一般不需要处理特殊情况。

void SortedInsert2(struct node** headRef,struct node* newNode)
{
    struct node dummy;
    struct node* cur = &dummy;
    dummy.next = *headRef;

    while (cur->next && newNode->data >= cur->next->data)
    {
        cur = cur->next;
    }
    newNode->next = cur->next;
    cur->next = newNode;

    *headRef = dummy.next;  //头指针永远指向dummy.next
}

3、Local references strategy for the head end

void SortedInsert3(struct node** headRef,struct node* newNode)
{
    struct node** curRef = headRef;

    while (*curRef && (*curRef)->data <= newNode->data)
    {
        curRef = &((*curRef)->next);
    }

    newNode->next = *curRef;  //Bug:(*curRef)->next  is incorrect

    *curRef = newNode;
}

原文地址:https://www.cnblogs.com/EIMadrigal/p/12234295.html

时间: 2024-10-18 17:28:48

终结Linked List(三)的相关文章

终结Linked List(一)

链表一直是面试的重点问题,恰好最近看到了Stanford的一篇材料,涵盖了链表的基础知识以及派生的各种问题. 第一篇主要是关于链表的基础知识. 一.基本结构 1.数组回顾 链表和数组都是用来存储一堆数据的集合,其中单个元素的类型可以有很多种. 通过数组下标可以直接访问数组中的元素,比如: void ArrayTest() { int scores[100]; //初始化前3个元素 scores[0] = 1; scores[1] = 2; scores[2] = 3; } 最关键的是:整个数组被

作业6--再次终结(冲刺三)

1 package com.example.zs; 2 3 import java.util.*; 4 5 import android.support.v7.app.ActionBarActivity; 6 import android.support.v7.app.ActionBar; 7 import android.support.v4.app.Fragment; 8 import android.os.Bundle; 9 import android.view.LayoutInflat

终结Linked List(二)

三.编码技巧 1.遍历链表 先将head指针赋值给一个局部变量current: //return the number of nodes in a list (while-loop version) int Length(struct node* head) { int count = 0; struct node* current = head; while (current != NULL) { count++; current = current->next; } return count

Java基础复习计划(三)

散碎知识点 Math.round() 方法进行四舍五入计算,实现是:Math.floor(a + 0.5f) floor : 意为地板,指向下取整,返回不大于它的最大整数 ceil : 意为天花板,指向上取整,返回不小于它的最小整数 round : 意为大约,表示"四舍五入",而四舍五入是往大数方向入. 关于方法区溢出: 经常动态生成大量 Class 的应用中,Spring.hibernate 对类进行增强的时候使用 CGLib 类字节码技术 ,其他运行在 JVM 的动态语言: 常见的

刷题114. Flatten Binary Tree to Linked List

一.题目说明 题目114. Flatten Binary Tree to Linked List,将一个二叉树"原地"压缩为"链表"形态的二叉树.难度为Medium! 二.我的解答 这个题目如果允许使用栈的话Easy,先序遍历二叉树,右子树入栈,左子树入栈.当栈不空的时候,将栈顶元素放到右子树即可. class Solution{ public: void flatten(TreeNode* root){ //先根遍历 if(root==NULL) return;

【转】gif文件格式详解

1.概述 ~~~~~~~~ GIF(Graphics Interchange Format,图形交换格式)文件是由 CompuServe公司开发的图形文件格式,版权所有,任何商业目的使用均须 CompuServe公司授权. GIF图象是基于颜色列表的(存储的数据是该点的颜色对应于颜色列表的索引值),最多只支持8位(256色).GIF文件内部分成许多存储块,用来存 储多幅图象或者是决定图象表现行为的控制块,用以实现动画和交互式应用.GIF文件还通过LZW压缩算法压缩图象数据来减少图象尺寸(关于LZ

《深入Java虚拟机学习笔记》- 第7章 类型的生命周期

一.类型生命周期的开始 如图所示 初始化时机 所有Java虚拟机实现必须在每个类或接口首次主动使用时初始化: 以下几种情形符合主动使用的要求: 当创建某个类的新实例时(或者通过在字节码中执行new指令,或者通过不明确的创建.反射.克隆和反序列化): 当调用某个类的静态方法时(即在字节码中执行invokestatic指令): 当使用某个类或接口的静态字段,或者对该字段赋值时(用final修饰的静态字段除外,它被初始化为一个编译时常量表达式): 当调用Java API中的某些反射方法: 当初始化某个

对动态库和静态库的一些总结

动态库和静态库 区 别 静态库 动态库 将库文件中的二进制代码直接链接到目标文件,程序运行时不再需要库: 将接口在库文件中的位置信息链接到目标文件,程序运行时再根据这些位置信息进行调用,因此运行时需要库文件: lib 中的指令都全部被直接包含在最终生成的目标文件中了: dll不必被包含在最终目标文件中,目标文件执行时可以“动态”地引用和卸载dll文件: 静态链接库中不能再包含其他的动态链接库或者静态库: 动态链接库中还可以再包含其他的动态或静态链接库: 优缺点 静态库 动态库 静态库只需要编译的

常见图片文件格式简析

“常见”:此处指BMP JPEG GIF PNG 四种. 软件: Windows 画图(除了Photoshop,我最喜欢的编辑器,简单粗暴) HxD BMP BMP文件分为4部分: bmp文件头(bmp file header):14Byte.提供文件的格式.大小等信息 . 位图信息头(bitmap information):40Byte.提供图像数据的尺寸.位平面数.压缩方式.颜色索引等信息 . 调色板(color palette):大小由颜色索引数决定.可选,如使用索引来表示图像,调色板就是