两个大数的相乘

这里还有很多bug,只能够将每个数字一个一个输入,并用空格间隔,同时,结束输入的时候,需要按ctrl+z来实现



#include<iostream>
using namespace std;


const int N=100;
int getNumber(int a[],int i)
{
int num;


while(cin>>num)//按键不等于换行或回车
a[i++]=num;


//for(int bit=0;bit<i;bit++)
// cout<<a[bit];
//cout<<endl;
return i;
}


int main(void)
{
int a[N],b[N];
int c[N]={0};
int i=0,j=0,k_a,k_b;
cout<<"Enter one number:"<<endl;
k_a=getNumber(a,i);//获取数据的位数
cout<<k_a<<endl;
cout<<"Enter another number:"<<endl;
cin.clear();//回复到有效状态


k_b=getNumber(b,j);//获取数据的位数
cout<<k_b<<endl;


cout<<"After multiply:"<<endl;


//for(int i=0;i<N;i++)//验证全部为0
// cout<<c[i]<<" ** ";
cout<<endl;
int jinwei=-1;//确保相乘的数能够在每次相乘的时候最低位在对应的位置
int k_c;//最后的时候,k_c是保留了下来的

for(int i=k_a-1;i>=0;i--)
{
jinwei++;//第一个数放在c[0]
k_c=jinwei;
int jinweishu=0;//每次都要把进位数清零
//cout<<jinwei<<endl;
//cout<<a[i]<<endl;//验证每个位的数


for(int j=k_b-1;j>=0;j--)//每次从个位开始相乘
{
c[k_c]=c[k_c]+a[i]*b[j]+jinweishu;
jinweishu=c[k_c]/10;
c[k_c]=c[k_c]%10;
k_c++;
}
//循环完了以后,如果进位数不为0
if(jinweishu!=0)
c[k_c]=jinweishu;
else//否则它这个位没有进位数的话就没有值
k_c--;
}




for(int w=k_c;w>=0;w--)
cout<<c[w];
cout<<endl;


return 0;
}

以下是一个基于链表的 C 语言代码,用于计算两个大数的乘积。 ```c #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; typedef struct node Node; Node *create_node(int num) { Node *new_node = (Node *) malloc(sizeof(Node)); new_node->data = num; new_node->next = NULL; return new_node; } Node *insert_at_end(Node *head, int num) { Node *new_node = create_node(num); if (head == NULL) { head = new_node; return head; } Node *temp = head; while (temp->next != NULL) { temp = temp->next; } temp->next = new_node; return head; } Node *reverse_list(Node *head) { Node *prev = NULL, *current = head, *next = NULL; while (current != NULL) { next = current->next; current->next = prev; prev = current; current = next; } return prev; } Node *multiply_lists(Node *head1, Node *head2) { Node *result = NULL; Node *temp1 = head1, *temp2; int carry = 0, sum; while (temp1 != NULL) { temp2 = head2; Node *new_node = NULL; carry = 0; while (temp2 != NULL) { sum = (temp1->data * temp2->data) + carry; carry = sum / 10; new_node = insert_at_end(new_node, sum % 10); temp2 = temp2->next; } if (carry > 0) { new_node = insert_at_end(new_node, carry); } new_node = reverse_list(new_node); for (int i = 0; i < temp1->data; i++) { new_node = insert_at_end(new_node, 0); } result = add_lists(result, new_node); temp1 = temp1->next; } return result; } Node *add_lists(Node *head1, Node *head2) { Node *result = NULL; Node *temp1 = head1, *temp2 = head2; int carry = 0, sum; while (temp1 != NULL || temp2 != NULL) { sum = carry + (temp1 != NULL ? temp1->data : 0) + (temp2 != NULL ? temp2->data : 0); carry = sum / 10; result = insert_at_end(result, sum % 10); if (temp1 != NULL) { temp1 = temp1->next; } if (temp2 != NULL) { temp2 = temp2->next; } } if (carry > 0) { result = insert_at_end(result, carry); } return result; } void display_list(Node *head) { Node *temp = head; while (temp != NULL) { printf("%d", temp->data); temp = temp->next; } printf("\n"); } int main() { Node *num1 = NULL, *num2 = NULL, *result = NULL; char c; int num; printf("Enter first number:\n"); while ((c = getchar()) != '\n') { num = c - '0'; num1 = insert_at_end(num1, num); } printf("Enter second number:\n"); while ((c = getchar()) != '\n') { num = c - '0'; num2 = insert_at_end(num2, num); } num1 = reverse_list(num1); num2 = reverse_list(num2); result = multiply_lists(num1, num2); printf("Result:\n"); display_list(result); return 0; } ``` 该代码将两个大数存储为链表,并使用一个辅助函数来反转链表。然后,它将两个链表相乘,产生一个新的链表,该链表包含结果。最后,它将结果链表打印到控制台上。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值