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

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

You have two numbers represented by a linked list, where each node contains a single digit The digits are stored in reverse order, such that the 1’s digit is at the head of the list. Write a function that adds the two numbers and returns the sum as a linked list.

EXAMPLE Input: (3 -> 1 -> 5) + (5 -> 9 -> 2)

Output: 8 -> 0 -> 8

我采用非递归,按照答案的思路写了递归的方法

#include 
using namespace std;// Creating a Linked List:struct Node{ Node(int d):data(d){next = NULL;}; int data; Node* next;};void printNode(Node* head){ cout<<"Print:"<
data<
next; } cout<<"End"<
data) + (o2==NULL?0:o2->data) + flag; flag = temp / 10; q = new Node(temp % 10); p->next = q; p = p->next; if(o1 != NULL) o1 = o1->next; if(o2 != NULL) o2 = o2->next; } p->next = NULL; p = head->next; delete head; return p; };Node* plusNodeRec(Node *o1, Node *o2, int carry){ if(o1 == NULL && o2 == NULL) return NULL; int result = (o1==NULL?0:o1->data) + (o2==NULL?0:o2->data) + carry; Node* p = new Node(result % 10); Node* next = plusNodeRec(o1==NULL?NULL:o1->next, o2==NULL?NULL:o2->next, result / 10); p->next = next; return p;};int main(){ Node* head1 = new Node(3); head1->next = new Node(1); Node* head2 = new Node(5); head2->next = new Node(9); head2->next->next = new Node(2); // printNode(plusNode(head1, head2)); printNode(plusNodeRec(head1, head2, 0)); system("pause"); };

转载地址:http://quyaa.baihongyu.com/

你可能感兴趣的文章
zabbix监控安装与配置
查看>>
python 异常
查看>>
last_insert_id()获取mysql最后一条记录ID
查看>>
可执行程序找不到lib库地址的处理方法
查看>>
bash数组
查看>>
Richard M. Stallman 给《自由开源软件本地化》写的前言
查看>>
oracle数据库密码过期报错
查看>>
zip
查看>>
How to recover from root.sh on 11.2 Grid Infrastructure Failed
查看>>
rhel6下安装配置Squid过程
查看>>
《树莓派开发实战(第2版)》——1.1 选择树莓派型号
查看>>
在 Linux 下使用 fdisk 扩展分区容量
查看>>
结合AlphaGo算法和大数据的量化基本面分析法探讨
查看>>
如何在 Ubuntu Linux 16.04 LTS 中使用多个连接加速 apt-get/apt
查看>>
《OpenACC并行编程实战》—— 导读
查看>>
机器学习:用初等数学解读逻辑回归
查看>>
Oracle原厂老兵:从负面案例看Hint的最佳使用方式
查看>>
把自己Github上的代码添加Cocoapods支持
查看>>
C语言OJ项目参考(2493)四则运算
查看>>
find和xargs
查看>>