大家好,今天小编关注到一个比较有意思的话题,就是关于c语言整数四则运算的问题,于是小编就整理了1个相关介绍c语言整数四则运算的解答,让我们一起看看吧。
如何用C语言实现长整数四则运算?
这里懒得写具体的代码之类。只说思路。
不管你是要做128位还是256位还是更多位的整数四则运算,可以把这个大整数分解为32位整数的数组或者链表之类的数据结构来存储,然后再写几个进行加减乘除的函数来进行四则计算。
给粗一个leetcode题目作为参考:
原题:You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Example:
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)Output: 7 -> 0 -> 8Explanation: 342 + 465 = 807.
翻译:这里有两组代表非负数(如:342)的链表,是以相反的方向来存放每一位的(如:2->4->3),问:将这个两个链表代表的非负数相加,然后返回一个新链表代表这个结果。
举例:输入: (2 -> 4 -> 3) + (5 -> 6 -> 4)输出: 7 -> 0 -> 8结果: 342 + 465 = 807.
一,我的错误思路:***设输入的是链表a 和链表 b
1.先计算出a, b代表的数字N1 , N2. 然后计算出两者的和:N1+N2=N3.算出N3每一位的数字,然后将反向取得链表c
到此,以上就是小编对于c语言整数四则运算的问题就介绍到这了,希望介绍关于c语言整数四则运算的1点解答对大家有用。