摘要:
#define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 typedef int Status; typedef int SElemType; typed 阅读全文
2021年5月29日
摘要:
#define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 typedef int Status; typedef int SElemType; #defi 阅读全文
摘要:
这是一个简单的题,但是我一开始以*returnSize作为结果集返回,始终得不到需要的结果, 其实很明显returnSize本来翻译过来的意思就是返回结果集的大小而不是结果集。这里是暴力解法。 思想很简单,就是从数组中的第一个数开始,和其中剩下的其他的数相加看能否满足想要的target。 int* 阅读全文