c++两个链表求和进位

原题为 计算两个均为小于10的链表求和,且和为大于10要进位到下个指针对象里。

以下为代码和调试图

 #include <iostream>

using namespace std;

typedef struct Node
{
    int data;
    struct Node *next;
}Node, *pNode;

int InitList(pNode &pHeader)
{
    pHeader = (pNode)malloc(sizeof(Node));
    if (nullptr == pHeader)
        return -1;
    pHeader->next = nullptr;
    return 0;
}

void CreateList(pNode &pHeader, int n)
{
    pNode p, q = pHeader;
    for (int i = 0; i < n; ++i)
    {
        p = (pNode)malloc(sizeof(Node));
        p->data = rand() % 10;
        q->next = p;
        q = p;
    }
    q->next = nullptr;  //have header; tail insert
}

void PrintList(pNode &pHeader)
{
    pNode q = pHeader->next;
    while (nullptr != q) {
        printf("%d, ", q->data);
        q = q->next;
    }
    printf("\n");
}

void CombineAdd(pNode &La, pNode &Lb, pNode &Lc)
{
    pNode pa = La->next;
    pNode pb = Lb->next;
    pNode p, q = Lc;
    int tenLoc = 0;
    while (nullptr != pa && nullptr != pb) {
        p = (pNode)malloc(sizeof(Node));
        p->data = pa->data + pb->data + tenLoc;
        if (p->data >= 10)
        {
            p->data %= 10;
            tenLoc = 1;
        }
        else
        {
            tenLoc = 0;
        }
        q->next = p;
        q = p;
        pa = pa->next;
        pb = pb->next;
    }
    if (nullptr != pa)
        q->next = pa;
    if (nullptr != pb)
        q->next = pb;
}

int main()
{
    cout << "Hello World!" << endl;
    int m = 15;
    int n = 20;
    pNode LA, LB, LC;
    InitList(LA);
    InitList(LB);
    InitList(LC);
    CreateList(LA, m);
    CreateList(LB, n);
    PrintList(LA);
    PrintList(LB);
    CombineAdd(LA, LB, LC);
    printf("\n\n");
    PrintList(LC);
    return 0;
}

测试演示结果
测试演示结果
如果有问题请添加QQ-986573837

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值