跪求要一个offer
跪求要一个offer
全部文章
分类
题解(178)
归档
标签
去牛客网
登录
/
注册
跪求要一个offer的博客
TA的专栏
12篇文章
0人订阅
算法和编程题解
12篇文章
275人学习
全部文章
(共183篇)
题解 | #截取出年龄#
select #sql中subString_index的嵌套使用的用法 SUBSTRING_INDEX(SUBSTRING_INDEX(profile,',',3),',',-1) as age, count(device_id) as NUMBER from user_s...
Mysql
2022-01-06
0
289
题解 | #统计每种性别的人数#
#sql中分割字符串的方法 select SUBSTRING_INDEX(profile,',',-1) as gender, COUNT(device_id) as NUMBER from user_submit group by gender;
Mysql
2022-01-05
0
351
题解 | #计算25岁以上和以下的用户数量#
select ( case when age>=25 then '25岁及以上' else '25岁以下' end) as age_cut, count(device_id) as number...
Mysql
2022-01-05
0
360
题解 | #栈的压入、弹出序列#
public: bool IsPopOrder(vector<int> pushV,vector<int> popV) { bool flag=true; stack<int> test; int i; ...
C++
2022-01-04
0
310
题解 | #去除字符串中重复的字符#
#include<set> // write your code here...... using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); ...
C++
2022-01-02
0
321
题解 | #数组元素处理#
using namespace std; void func(int* p, int n); int main() { int arr[6] = { 0 }; for (int i = 0; i < 6; i++) { cin >> arr[i...
C++
2021-12-30
0
417
题解 | #数值的整数次方#
public: double Power(double base, int exponent) { double result=1; int i; //暴力法 if(exponent>0){ for...
C++
2021-12-30
0
341
题解 | #二叉树的深度#
struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class Sol...
C++
2021-12-30
0
294
题解 | #和为S的两个数字#
public: vector<int> FindNumbersWithSum(vector<int> array,int sum) { //使用双指针算法 int left,right; int i,j,k; ...
C++
2021-12-29
0
418
题解 | #设计立方体类#
using namespace std; class Cube { private: int length; int width; int height; public: // Cube(int length,...
C++
2021-12-29
0
456
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页