微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

大数相乘

原文地址:http://www.voidcn.com/article/p-gumwnrcx-mw.html


#include <stdlib.h>
#include <stdio.h>
#include <string.h>

void multiply(char* a,char* b,char* c)
{
	int sa = 0;
	int sb = 0;
	int i,j;
	int *result = NULL;

	if ((NULL == a) || (NULL == b) || (NULL == c))
	{
		return ;
	}

	sa = strlen(a);
	sb = strlen(b);
	result = (int*)malloc(sizeof(int) * (sa+sb));

	//把存放结果的数组清零
	//memset(result,sizeof(result));
	for (i = 0; i < sa+sb; i++)
	{
		result[i] = 0;
	}

	for (i = 0; i < sa; i++)
	{
		for (j = 0; j< sb; j++)
		{
			result[i+j] += (*(a+sa-i-1) - '0') * (*(b+sb-j-1) - '0');
		}
	}

	//进位
	for (i = 0; i < sa+sb; i++)
	{
		result[i+1] += result[i] / 10;
		result[i] %= 10;
	}

	//出参赋值
	i = sa+sb-1;
	if (result[i] == 0)
	{
		i--;
	}

	for (; i >=0; i--)
	{
		*c++ = result[i] + '0';
	}
	*c = '\0';

	free(result);
	return ;
}


void main()
{
	char *a = "52364";
	char *b = "68746";
	char c[100] = {0};

	multiply(a,b,c);

	return ;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐