02 2018 档案

摘要:1 /*g++ *.cpp `pkg-config --cflags --libs opencv` -std=c++11*/ 2 3 #include <opencv2/opencv.hpp> 4 using namespace std; 5 using namespace cv; 6 #defin 阅读全文
posted @ 2018-02-04 15:25 我在地狱 阅读(594) 评论(0) 推荐(0)
摘要:43. Multiply Strings 高精度非负整数的乘法。 1 string multiply(string num1, string num2) { 2 string sum(num1.size() + num2.size(), '0'); 3 4 for (int i = num1.siz 阅读全文
posted @ 2018-02-03 15:57 我在地狱 阅读(878) 评论(0) 推荐(1)