牛客82035003号
牛客82035003号
全部文章
分类
题解(161)
归档
标签
去牛客网
登录
/
注册
牛客82035003号的博客
全部文章
(共200篇)
题解 | #试卷发布当天作答人数和平均分#
select exam_id, count(distinct uid) as uv, round(avg(score), 1) as&...
Mysql
2022-02-13
0
327
题解 | #作答试卷得分大于过80的人的用户等级分布#
select level, count(distinct ui.uid) as level_cnt from examination_info as ei join exam_record ...
Mysql
2022-02-13
0
422
题解 | #月总刷题数和日均刷题数#
select date_format(submit_time, "%Y%m") as submit_month, count(submit_time) as ...
Mysql
2022-01-25
0
407
题解 | #得分不小于平均分的最低分#
select min(t1.score) as min_score_over_avg from exam_record as t1 join exa...
Mysql
2022-01-25
0
303
题解 | #数字在升序数组中出现的次数#
int GetNumberOfK(int* data, int dataLen, int k ) { int i = 0, cnt...
C
C++
2022-01-22
0
381
题解 | #在行列都排好序的矩阵中找指定的数#
#include <stdio.h> int main() { int n = 0, m = 0, k = 0; int ...
C++
C
2022-01-22
1
485
题解 | #删除有序链表中重复的元素-I#
ListNode* deleteDuplicates(ListNode* head) { ListNode* p = head...
C++
2022-01-21
0
310
题解 | #调整数组顺序使奇数位于偶数前面(二)#
要使全部奇数排在偶数前面,且奇数和奇数,偶数和偶数之间的相对位置不做要求, 那么就从前向后找偶数,同时从后往前找奇数,找到之后,二者进行交换,直到没有可交换的。 vector<int> reOrderArrayTwo(vector<int>& ar...
C++
C
2022-01-21
1
423
题解 | #数组中出现次数超过一半的数字#
//这是2013年408真题中的求主元素。 class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers)&nbs...
C++
C
2022-01-21
2
380
题解 | #斐波那契数列#
int Fibonacci(int n ) { int a = 1, b = 1, c = 1; //n=1或2时,返回...
C
2022-01-21
0
273
首页
上一页
10
11
12
13
14
15
16
17
18
19
下一页
末页