JIEIJ
JIEIJ
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
JIEIJ的博客
全部文章
(共8篇)
题解 | #判断一个链表是否为回文结构#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 the head * @return bool布尔型 */ bool isPail...
C
2021-10-18
0
474
题解 | #判断链表中是否有环#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 * @return bool布尔型 */ bool hasCycle(struc...
C
2021-10-12
0
419
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead ListNode类 * @return ListNode类 */ struct ListNode*...
C
2021-10-11
0
322
题解 | #路灯#
#include <stdio.h> int main() { int n,l; while(~scanf("%d %d\n",&n,&l)) { int s[1001]; for(int i=0;i<n;i+...
C
2021-10-10
0
458
题解 | #数组中出现次数超过一半的数字#
/** * * @param numbers int整型一维数组 * @param numbersLen int numbers数组长度 * @return int整型 */ int MoreThanHalfNum_Solution(int* numbers, int numbersL...
C
2021-10-08
7
731
题解 | #数组中只出现一次的两个数字#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型一维数组 * @param arrayLen int array数组长度 * @return int整型一维数组 * @return int* re...
C
2021-10-07
3
504
题解 | #螺旋矩阵#
/** * * @param matrix int整型二维数组 * @param matrixRowLen int matrix数组行数 * @param matrixColLen int* matrix数组列数 * @return int整型一维数组 * @return int* ...
C
2021-10-04
6
555
题解 | #斐波那契数列#
/** * * @param n int整型 * @return int整型 */ int Fibonacci(int n ) { // write code here if(n == 0) return 0; if(n == 1) return 1;...
C
2021-10-03
0
293