博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单链表二
阅读量:6328 次
发布时间:2019-06-22

本文共 2634 字,大约阅读时间需要 8 分钟。

hot3.png

#include <iostream>

using namespace std;

//assembly access specifiers are only available in code compiled with a /clr option,

//i.e. they are wrong for class or struct, members of which are appropriate.
struct Node{
    int data;
    Node* next;
    Node(int nData)
    {
       this->data = nData;
       this->next = NULL;
    }
};

/// --- pList ---

#define ListSize 10
typedef Node *pList[ListSize];

void InsertList(pList pLt, int* nArray)

{
    pLt[0] = new Node(nArray[0]);
    for (int i = 1; i < ListSize; i++)
    {
       pLt[i] = new Node(nArray[i]);
       pLt[i - 1]->next = pLt[i];
    }
}
//

//Return pHead

Node* CreateList(int* nArray, int nLengthOfArray)
{
    if (nLengthOfArray < 1)  return NULL;

    Node* nodeTemp = new Node(nArray[0]);

    Node* pHead = nodeTemp;

    for(int i = 1; i < nLengthOfArray; i++)

    {
        Node* nodeCurrent = new Node(nArray[i]);
        nodeTemp->next = nodeCurrent;
        nodeTemp = nodeCurrent;
    }

    return pHead;

}

void InsertList(Node *pNode, int nInsertData)

{
    Node *pInsert = new Node(nInsertData);

    while(pNode->next != NULL)

    {
        pNode = pNode->next;
    }
    pNode->next = pInsert;
}

Node* ReverseList(Node* pHead)

{
    if(pHead->next == NULL)
        return pHead;

    Node* Next = NULL;

    Node* Prev = NULL;
    while(pHead != NULL)
    {
        Next = pHead->next;
        pHead->next = Prev;
        Prev = pHead;
        pHead = Next;
    }

    return Prev;

}

Node* MergeList(Node* pHead1, Node* pHead2)

{
    Node* pHead = new Node(0);

    if (NULL == pHead1)  return pHead2;

    if (NULL == pHead2)  return pHead1;

    if (pHead1->data <= pHead2->data)

    {
        pHead = pHead1;
        pHead->next = MergeList(pHead1->next, pHead2);
    }
    else
    {
        pHead = pHead2;
        pHead->next = MergeList(pHead1, pHead2->next);
    }

    return pHead;

}

void PrintList(Node* pHead)
{
    cout << "***" << endl;
    while(NULL != pHead)
    {
        cout << pHead->data << endl;
        pHead = pHead->next;
    }
}

int main()

{
    int* nArray = new int[ListSize];
    int* nArray1 = new int[ListSize];
    for (int i = 0; i < ListSize; i++)
        nArray[i] = i + 1;
    for (int i = 0; i < ListSize; i++)
        nArray1[i] = i * 2;
    
    Node* pHead = CreateList(nArray, ListSize);
    Node* pHead1 = CreateList(nArray1, ListSize);
    PrintList(pHead);
    InsertList(pHead, 100);
    PrintList(pHead1);
    //Merge
    cout << "--- MergeList ---" << endl;
    PrintList(MergeList(pHead, pHead1));

    PrintList(ReverseList(pHead));

    
    //pList
    cout << endl << "--- pList ---" << endl;
    pList pLt;
    InsertList(pLt, nArray);
    for (int i = 0; i < ListSize; i++)
    {
        cout << pLt[i]->data << endl;
    }

    //

    Node **ppListArray = new Node* [ListSize];   //Node *pListArray[ListSize]; is also valid, but its size is unchageable;
    InsertList(ppListArray, nArray);
    for (int i = 0; i < ListSize; i++)
    {
        cout << ppListArray[i]->data << endl;
    }

    delete nArray;

    system("pause");

    return 0;
}

转载于:https://my.oschina.net/ucliaohh/blog/822642

你可能感兴趣的文章
简述:预处理、编译、汇编、链接
查看>>
调试网页PAIP HTML的调试与分析工具
查看>>
路径工程OpenCV依赖文件路径自动添加方法
查看>>
玩转SSRS第七篇---报表订阅
查看>>
WinCE API
查看>>
.NET 4.5.1 预览版新特性
查看>>
POJ 3280 Cheapest Palindrome(DP 回文变形)
查看>>
oracle修改内存使用和性能调节,SGA
查看>>
SQL语言基础
查看>>
对事件处理的错误使用
查看>>
最大熵模型(二)朗格朗日函数
查看>>
深入了解setInterval方法
查看>>
html img Src base64 图片显示
查看>>
[Spring学习笔记 7 ] Spring中的数据库支持 RowMapper,JdbcDaoSupport 和 事务处理Transaction...
查看>>
FFMPEG中关于ts流的时长估计的实现(转)
查看>>
Java第三次作业
查看>>
【HDOJ 3652】B-number
查看>>
android代码混淆笔记
查看>>
Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) C. String Reconstruction 并查集
查看>>
BMP文件的读取与显示
查看>>