牛客82035003号
牛客82035003号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客82035003号的博客
全部文章
/ 题解
(共130篇)
题解 | #二叉树中和为某一值的路径(一)#
#include <stdbool.h> bool hasPathSum(struct TreeNode* root, int sum ) { i...
C
2022-02-17
3
377
题解 | #链表中环的入口结点#
int maxProfit(int* prices, int pricesLen ) { //if(prices == NULL || si...
C
2022-02-17
0
284
题解 | #判断链表中是否有环#
#include <stdbool.h> bool hasCycle(struct ListNode* head ) { if(head == NULL) &...
C
2022-02-17
0
380
题解 | #链表中环的入口结点#
struct ListNode* EntryNodeOfLoop(struct ListNode* pHead ) { if (pHead == N...
C
2022-02-17
0
398
题解 | #对称的二叉树#
#include <stdbool.h> bool isSame(struct TreeNode* root1, struct TreeNode* root2) { if...
C
2022-02-17
0
395
题解 | #牛牛的字符菱形#
写一个题要会一类题。模子出来了,给任意n都可以用 #include <stdio.h> int main() { char ch; scanf("%c", &ch); ...
C
2022-02-16
138
4017
题解 | #数字在升序数组中出现的次数#
int GetNumberOfK(int* data, int dataLen, int k ) { int i = 0, cnt...
C
C++
2022-01-22
0
389
题解 | #在行列都排好序的矩阵中找指定的数#
#include <stdio.h> int main() { int n = 0, m = 0, k = 0; int ...
C++
C
2022-01-22
1
491
题解 | #调整数组顺序使奇数位于偶数前面(二)#
要使全部奇数排在偶数前面,且奇数和奇数,偶数和偶数之间的相对位置不做要求, 那么就从前向后找偶数,同时从后往前找奇数,找到之后,二者进行交换,直到没有可交换的。 vector<int> reOrderArrayTwo(vector<int>& ar...
C++
C
2022-01-21
1
431
题解 | #数组中出现次数超过一半的数字#
//这是2013年408真题中的求主元素。 class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers)&nbs...
C++
C
2022-01-21
2
392
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页