这还不简简单单?
这还不简简单单?
全部文章
分类
题解(6)
归档
标签
去牛客网
登录
/
注册
这还不简简单单?的博客
全部文章
(共6篇)
题解 | #跳台阶#
/** * * @param number int整型 * @return int整型 */ int jumpFloor(int number ) { // write code here int f1,f2,f3,i; f1=f2=1; if(numb...
C
2021-09-18
0
367
题解 | #判断链表中是否有环#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 * @return bool布尔型 */ bool hasCycle...
C
2021-09-18
0
476
题解 | #判断链表中是否有环#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 * @return bool布尔型 */ bool hasCycle...
C
2021-09-18
0
522
题解 | #单链表的排序#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 the head node * @return ListNode类 *...
C
2021-09-18
11
1478
题解 | #反转链表#
struct ListNode* ReverseList(struct ListNode* pHead ) { struct ListNode *p1,*p2,*p3; if(pHead!=NULL) { p1=pHead; while(p1!=NULL)...
C
2021-09-18
0
448
题解 | #反转链表#
struct ListNode* ReverseList(struct ListNode* pHead ) { struct ListNode *p1,*p2,*p3; if(pHead!=NULL) { p1=pHead; p2=(struct ListNo...
C
2021-09-18
0
423