链表API

Posted prog123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链表API相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <stdio.h>

using namespace std;

#define size 1000

struct node{

    int num;
    node *next;
    node *pre;

};

node NodeListPool[size];
int index = 0;
node nil;
node *NIL;

void init()
{
    NIL = & nil;
    NIL->next = NIL;
    NIL->pre = NIL;
    NIL->num = -100;

}

node *getNewNode()
{
    return &NodeListPool[index++];
}

void insert(node *target, node *newNode)
{
    newNode->next = target->next;
    newNode->pre = target;
    target->next = newNode;
    newNode->next->pre = newNode;

}

node *search(int key)
{
    node *tmp = NIL->next;
    while(tmp != NIL && tmp ->num != key)
    {
        tmp = tmp -> next;
    }

    return tmp;
}

void deleteNode(node *node)
{
    node->pre->next = node->next;
    node->next->pre = node->pre;
}

int main()
{
    init();
    node *tmpNode = NIL;
    for(int i = 0; i < 100 ;i++)
    {
        int tmp = rand()%100 + 1;
        cout << tmp << endl;
        node *newNode = getNewNode();
        newNode ->num = tmp;
        insert(tmpNode,newNode);
        tmpNode = tmpNode->next;
    }

    cout << "-------------------------------------"<< endl;

    tmpNode = NIL;
    while(tmpNode->next != NIL)
    {
        cout << tmpNode->next->num << endl;
        tmpNode = tmpNode->next;
    }
    return 0;
}

 

以上是关于链表API的主要内容,如果未能解决你的问题,请参考以下文章

C语言反转单向链表的代码

Android 插件化VirtualApp 源码分析 ( 目前的 API 现状 | 安装应用源码分析 | 安装按钮执行的操作 | 返回到 HomeActivity 执行的操作 )(代码片段

JavaScript笔试题(js高级代码片段)

NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段

微信小程序代码片段

Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段