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 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 单链表头插法以及所有功能的实现(纯代码) -> 正文阅读

[数据结构与算法]单链表头插法以及所有功能的实现(纯代码)

纯代码,想看懂只需要了解一下指针即可。

#include <iostream>
#include <stdio.h>
using namespace std;
typedef struct LNode {//抽象数据类型
    int data;
    struct LNode* next;
};

void Judge(bool judge) {
    if (judge == true)
        cout << "Opration Successful\n";
    else
        cout << "Opration failed\n";
}

bool AddNode(int num, LNode *H) {//在下标为num的结点后方添加新的结点。
    try {
        int x;  LNode *S = H;
        LNode* R = (LNode*)malloc(sizeof(LNode));
        for (int i = 1; i <= num; i++) {
            if (S == NULL) throw 1;
            S = S->next;
        }
        R->next = S->next;
        S->next = R;
        cout << "Please input the value\n";
        cin >> x;    R->data = x;
        return true;
    }
    catch (int e) {
        return false;
    }
}

bool SearchValueByOrderNumber(int num, LNode *H) {//找到下标为num的结点的Value。
    try {
        LNode *S = H;
        for (int i = 1; i <= num; i++) {
            S = S->next;
            if (S == NULL) throw 1;
        }
        cout << "The value you are searching for is "<< S->data << "\n";
        return true;
    }
    catch (int e) {
        return false;
    }
}

bool SearchOrderNumberByValue(int num, LNode *H) {//找到Value=num的第一个结点的下标。
    try {
        LNode* S = H;
        cout << "The order number you are looking for is ";
        for (int i = 1; i <= INT_MAX; i++) {
            S = S->next;
            if (S->data == num && S != NULL) {
                cout << i << "\n";
                break;
            }
            else if (S->next == NULL) throw 1;
        }
        return true;
    }
    catch (int e) {
        return false;
    }
}

bool DeleteNodeByOrderNumber(int num, LNode *H) {//删除下标为num的结点
    try {
        LNode* S = H;
        LNode* R;
        for (int i = 1; i < num; i++) {
            if (S->next == NULL)  throw 1;
            S = S->next;
        }
        R = S->next;
        S->next = R->next;
        free(R);
        return true;
    }
    catch (int e) {
        return false;
    }
}

bool DeleteNodeByValue(int num, LNode *H) {//删除Value为num的下标
    try {
        LNode* S = H;
        LNode* R;
        for (int i = 1; i <= INT_MAX; i++) {
            if (S->next == NULL) throw 1;
            if (S->next->data == num) {
                break;
            }
            S = S->next;
        }
        R = S->next;
        S->next = R->next;
        free(R);
        return true;
    }
    catch (int e) {
        return false;
    }
    
}
/*注:未初始化变量函数传参得引用。*/
bool InitializeLinkList(LNode* &H) { //头插法初始化单链表。
    try {
        LNode* S; int x;
        H = (LNode*)malloc(sizeof(LNode));//创建头节点.
        H->next = NULL;
        for (int i = 1; i <= INT_MAX; i++) { //头插法实现.
            S = (LNode*)malloc(sizeof(LNode));
            cin >> x;   if (x == -1)  break;
            S->data = x;
            S->next = H->next;
            H->next = S;
        }
        return true;
    }
    catch (exception e) {
        return false;
    }
    
}

bool ReadLinkList(LNode* H) {//打印单链表。
    try {
        LNode* S = H->next;
        for (int i = 1; i <= INT_MAX; i++) {
            if (S == NULL) break;
            cout << S->data << " ";
            S = S->next;
        }
        cout << "\n";
        return true;
    }
    catch(exception e){
        return false;
    }
}
int main() {
    LNode *Head; 
    cout << "Initialize the linklist, input -1 to stop\n";
    InitializeLinkList(Head);

    cout << "Input 1 to ReadLinkList\n"
            "Input 2 to DeleteNodeByOrderNumber\n"
            "Input 3 to DeleteNodeByValue\n"
            "Input 4 to AddNode\n"
            "Input 5 to SearchValueByOrderNumber\n"
            "Input 6 to SearchOrderNumberByValue\n"
            "Input anyothers to end\n";
    int choice,num;
    bool judge;
    while (1) {
        cin >> choice;
        switch (choice){
        case 1:
            judge = ReadLinkList(Head);
            Judge(judge);
            break;
        case 2:
            cout << "Please input the order number\n";
            cin >> num;
            judge = DeleteNodeByOrderNumber(num, Head);
            Judge(judge);
            break;
        case 3:
            cout << "Please input the node value\n";
            cin >> num;
            judge = DeleteNodeByValue(num, Head);
            Judge(judge);
            break;
        case 4:
            cout << "Please input the order number\n";
            cin >> num;
            judge = AddNode(num, Head);
            Judge(judge);
            break;
        case 5:
            cout << "Please input the order number of the node you are searching for\n";
            cin >> num;
            judge = SearchValueByOrderNumber(num, Head);
            Judge(judge);
            break;
        case 6:
            cout << "Please input the value of the node you are searching for\n";
            cin >> num;
            judge = SearchOrderNumberByValue(num, Head);
            Judge(judge);
            break;
        default:
            return 0;
        }
    }
    return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-30 08:55:25  更:2022-04-30 08:57:35 
 
开发: 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/26 5:24:18-

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