牛客82035003号
牛客82035003号
全部文章
分类
题解(161)
归档
标签
去牛客网
登录
/
注册
牛客82035003号的博客
全部文章
(共166篇)
题解 | #合并两个排序的链表#
struct ListNode* Merge(struct ListNode* pHead1, struct ListNode* pHead2 ) { stru...
C
2022-02-17
28
1144
题解 | #求平方根#
int Sqrt(int x ) { if(x < 2) return&nb...
C
2022-02-17
2
582
题解 | #第一个只出现一次的字符#
int FirstNotRepeatingChar(char* str ) { int n = strlen(str); if(n&n...
C
2022-02-17
0
297
题解 | #删除有序链表中重复的元素-I#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ struct ListN...
C
2022-02-17
0
243
题解 | #合并两个有序的数组#
void merge(int* A, int ALen, int m, int* B, int BLen, int n) { &nb...
C
2022-02-17
4
307
题解 | #二叉树的最大深度#
int maxDepth(struct TreeNode* root ) { if(root == NULL) &nbs...
C
2022-02-17
0
365
题解 | #二叉树中和为某一值的路径(一)#
#include <stdbool.h> bool hasPathSum(struct TreeNode* root, int sum ) { i...
C
2022-02-17
3
370
题解 | #链表中环的入口结点#
int maxProfit(int* prices, int pricesLen ) { //if(prices == NULL || si...
C
2022-02-17
0
279
题解 | #判断链表中是否有环#
#include <stdbool.h> bool hasCycle(struct ListNode* head ) { if(head == NULL) &...
C
2022-02-17
0
364
题解 | #链表中环的入口结点#
struct ListNode* EntryNodeOfLoop(struct ListNode* pHead ) { if (pHead == N...
C
2022-02-17
0
392
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页