牛客82035003号
牛客82035003号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客82035003号的博客
全部文章
/ 题解
(共159篇)
题解 | #有序序列插入一个整数#
#include <stdio.h> int main() { int n, x, i; scanf("%d\n", &n); int a...
C
2022-03-13
20
489
题解 | #回文对称数#
对每个数进行检验,检验方法为将该数反写,比较两数是否相同,相同则为回文数。 #include<stdio.h> int main() { int n; scanf("%...
C
2022-03-12
128
1835
题解 | #求路径#
//第一行全1,第一列全1,其他位置为其左上和正上之和。 int uniquePaths(int m, int n ) { int a[100][100] = {0}; &...
C
2022-02-17
0
375
题解 | #合并两个排序的链表#
struct ListNode* Merge(struct ListNode* pHead1, struct ListNode* pHead2 ) { stru...
C
2022-02-17
30
1153
题解 | #求平方根#
int Sqrt(int x ) { if(x < 2) return&nb...
C
2022-02-17
2
590
题解 | #第一个只出现一次的字符#
int FirstNotRepeatingChar(char* str ) { int n = strlen(str); if(n&n...
C
2022-02-17
0
290
题解 | #删除有序链表中重复的元素-I#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ struct ListN...
C
2022-02-17
0
250
题解 | #合并两个有序的数组#
void merge(int* A, int ALen, int m, int* B, int BLen, int n) { &nb...
C
2022-02-17
4
309
题解 | #二叉树的最大深度#
int maxDepth(struct TreeNode* root ) { if(root == NULL) &nbs...
C
2022-02-17
0
372
题解 | #二叉树中和为某一值的路径(一)#
#include <stdbool.h> bool hasPathSum(struct TreeNode* root, int sum ) { i...
C
2022-02-17
3
377
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页