2016年7月20日
摘要: //大数据相乘,具体的算法思想见c#define _CRT_SECURE_NO_WARNINGS //vs2013去掉安全检查 #include #include #include using namespace std; class big_data { public: void init_string() { cout > str1; ... 阅读全文
posted @ 2016-07-20 11:49 枝枝 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1大数据乘法的算法思路: 输入两个字符串,得到结果,例如:123456789*123456789; 思路:1)首先 123456789*1 = 9 18 27 36 45 54 63 72 81 123456789*2 = 9 18 27 36 45 54 63 72 81 123456789*3 阅读全文
posted @ 2016-07-20 11:35 枝枝 阅读(5084) 评论(1) 推荐(1) 编辑