被遗忘的,眼镜
被遗忘的,眼镜
全部文章
分类
题解(31)
归档
标签
去牛客网
登录
/
注册
被遗忘的,眼镜的博客
全部文章
(共31篇)
题解 | #删除链表中重复的结点#
typedef struct ListNode Node; struct ListNode* deleteDuplication(struct ListNode* pHead ) { Node* Pre = NULL; Node* node = pHead; Node* tmp; N...
C
2021-11-14
0
373
题解 | #删除链表的节点#
typedef struct ListNode Node; Node* find(Node* head, int val) { Node* tmp = (Node*)malloc(sizeof(Node)); if(!head) return NULL; t...
C
2021-11-14
1
430
题解 | #数值的整数次方#
#define MIN 0.000001 double Power_unsigned(double base, unsigned int exponent) { int i; double result = 1.0; if (exponent == 0) return 1; if (...
C
2021-11-12
0
392
题解 | #二进制中1的个数#
int NumberOf1(int n ) { // write code here int count =0 ; while(n) { count++; n=(n-1)&n; } return count; }
C
2021-11-12
0
312
题解 | #剪绳子#
int cutRope(int number ) { int MaxN[number+1]; int i,j; int max,tmp; if (number==0) return 0; if (number==1) retur...
C
2021-11-12
0
358
题解 | #机器人的运动范围#
int8_t Check_k(int k, int row, int col) { int tmp_r = 0; int tmp_c = 0; while (row ) { tmp_r += row % 10; row /= 10; } while (col) { tmp_...
C
2021-11-12
1
421
题解 | #旋转数组的最小数字#
int Special_arry(int a[],int left,int right){ int min = a[left]; int i ; for(i=left;i<=right;i++) { if(a[i]<min) ...
C
2021-11-12
1
409
题解 | #跳台阶#
* * @param number int整型 * @return int整型 * * C语言声明定义全局变量请加上static,防止重复定义 */ int jumpFloor(int number ) { int tmp_1; int tmp_2; int tmp_N; ...
C
2021-11-12
0
301
题解 | #用两个栈实现队列#
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param node int整型 * @return 无 * * C语言声明定义全局变量请加上static,防止重复定义 */ #define Ele int #define MIN -1...
C
2021-11-12
11
1108
题解 | #二叉树的下一个结点#
typedef struct TreeLinkNode BNode; BNode* find_In(BNode* root) { BNode* tmp; if (root == NULL) return NULL; tmp = root; while (!tmp&&!...
C
2021-11-11
0
359
首页
上一页
1
2
3
4
下一页
末页