Code1 将两个链表表示的整数相加 返回表示结果的链表

题目
  • 将两个链表表示的整数相加,结果用链表表示。
    例如:[1->2->3] + [4->5->6] = [5->7->9]
代码
// C++
#include <iostream>
#include <stack>
#include <vector>

// 链表节点
struct Node {
  int val; // 取值 0~9
  Node* next;
};

Node* add(Node* head1, Node* head2) {

  // head1入栈
  std::stack<int> d1;
  while (head1) {
    d1.push(head1->val);
    head1 = head1->next;
  }
  
  // head2入栈
  std::stack<int> d2;
  while (head2) {
    d2.push(head2->val);
    head2 = head2->next;
  }
  
  // 出栈处理
  Node* h = nullptr;
  int sum = 0;
  while (d1.size() || d2.size()) {
    if (d1.size()) {
      sum += d1.top();
      d1.pop();
    }
    if (d2.size()) {
      sum += d2.top();
      d2.pop();
    }

    Node* node = new Node();
    node->val = sum % 10;
    node->next = h;

    sum = sum / 10;
    h = node;
  }
  
  // 可能的最后进位处理
  if (0 != sum) {
    Node* node = new Node();
    node->val = sum;
    node->next = h;
    h = node;
  }

  return h;
}
测试
// 创建链表
Node* create(std::vector<int> vc) {
  Node* head = nullptr;
  Node* tail = nullptr;
  auto it = vc.begin();
  while (it != vc.end()) {
    Node* temp = new Node();
    temp->val = *it;
    temp->next = nullptr;

    if (nullptr == tail) {
      head = temp;
      tail = temp;
    } else {
      tail->next = temp;
      tail = tail->next;
    }
    ++it;
  }
  return head;
}

// 释放链表
void del(Node* head) {
  while(head) {
    auto temp = head->next;
    delete head;
    head = temp;
  }
}

// 打印链表
void print(Node* head) {
  while (head) {
    std::cout << head->val;
    head = head->next;
  }
  std::cout << std::endl;
}

int main() {
  std::vector<int> vc1 = {6,6,6,6,6};
  auto l1 = create(vc1);
  print(l1);

  std::vector<int> vc2 = {1,2,3,4,5};
  auto l2 = create(vc2);
  print(l2);

  auto l = add(l1, l2);
  print(l);

  del(l1);
  del(l2);
  del(l);

  std::cin.get();
  return 0;
}
  • 结果
66666
12345
79011
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值