2016年11月25日

摘要: #include #include #include #include using namespace std; struct ListNode{ int val; shared_ptr next; }; bool InsertNode(shared_ptr& insertPos,int val) { shared_ptr node(new ListNode); if (!n... 阅读全文
posted @ 2016-11-25 22:29 itdef 阅读(349) 评论(0) 推荐(0)
摘要: #include #include using namespace std; int* BigNumberMulti(int arr1[], int length1, int arr2[], int length2) { int len = length1 + length2; int* ret = new int[len]; memset(ret, 0, sizeof(int)... 阅读全文
posted @ 2016-11-25 11:24 itdef 阅读(183) 评论(0) 推荐(0)

导航