牛客808484225号
牛客808484225号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客808484225号的博客
全部文章
(共108篇)
题解 | #高级操作符练习(2)#
select device_id,gender,age,university,gpa from user_profile where university='北京大学'or gpa>3.7;
Mysql
2022-09-13
0
184
题解 | #高级操作符练习(1)#
select device_id,gender,age,university,gpa from user_profile where gender = 'male' and gpa > 3.5
数据库
2022-09-13
0
199
题解 | #用where过滤空值练习#
select device_id,gender,age,university from user_profile where age is not null
数据库
2022-09-09
0
176
题解 | #查找除复旦大学的用户信息#
select device_id, gender, age, university from user_profile where not university ="复旦大学"
数据库
2022-09-09
0
491
题解 | #查找某个年龄段的用户信息#
SELECT device_id,gender ,age from user_profile where age BETWEEN 20 and 23;
数据库
2022-09-09
1
214
题解 | #二叉树的中序遍历#
import java.util.*; /* * public class TreeNode { * int val = 0; * TreeNode left = null; *  ...
Java
2022-09-09
0
241
题解 | #二叉树的前序遍历#
import java.util.*; /* * public class TreeNode { * int val = 0; * TreeNode left = null; *  ...
Java
2022-09-09
0
259
题解 | #比较版本号#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 *  ...
Java
2022-09-09
0
265
题解 | #旋转数组的最小数字#
import java.util.ArrayList; public class Solution { public int minNumberInRotateArray(int [] array) { if(arr...
Java
2022-09-09
0
178
题解 | #数组中的逆序对#
public class Solution { public int InversePairs(int[] array) { if(array == null || array.length == 0){  ...
Java
2022-09-09
0
241
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页