已注销
已注销
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
已注销的博客
全部文章
(共4篇)
还不够简洁明了?
int atoi( const char *str ) { int answer = 0, symbol = 1, i = 0, n = 0; if( str == NULL ) { return 0; } f...
2020-10-06
2
783
这还不够简洁?
struct ListNode *plusAB( struct ListNode *a, struct ListNode *b ) { struct ListNode node = {-1,NULL}, *tail = NULL; int jw = 0; tail = &a...
2020-09-29
1
732
第一反应使用双指针
时间复杂度O(2N),空间复杂度O(N),包含返回数组。 int *reOrderArray( int *array, int arrayLen, int *returnSize ) { int *returnAry = NULL, left = 0, right = 0; ret...
2020-09-09
1
608
C解法
暴力递归搜索: static int violenceRecursion( int n ) { if( n <= 2 ) { return n < 1 ? 1 : n ; } return violenceRecursion( n - 1 ) +...
2020-09-09
1
598