摘要: #include "stdafx.h" #include <iostream> #include <cstdlib> static int _sumFibSeq(const int n, int pArrayFib[]) { if (0 != pArrayFib[n - 1]){ return pA 阅读全文
posted @ 2020-04-27 23:31 xinyueliu 阅读(161) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include <iostream> typedef struct LinkList { int data; struct LinkList *next; } LinkList_t; LinkList *Reverse(LinkList_t *pHead) 阅读全文
posted @ 2020-04-27 22:11 xinyueliu 阅读(200) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include <string> #include <iostream> #include <algorithm> int doubleNumbers(int array[], int len) { int result = 0 , idxPos = 0 ; 阅读全文
posted @ 2020-04-27 20:17 xinyueliu 阅读(173) 评论(0) 推荐(0)