牛客808484225号
牛客808484225号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客808484225号的博客
全部文章
(共108篇)
题解 | #查询结果限制返回行数#
select device_id from user_profile where id between 1 and 2;
2022-08-26
0
0
题解 | #查询多列#
select device_id,gender,age,university from user_profile;
2022-08-26
0
203
题解 | #查询所有列#
Select id, device_id, gender, age, university, province From user_profile;
2022-08-26
0
220
题解 | #二维数组中的查找#
public class Solution { public boolean Find(int target, int [][] array) { int m=array.length; ...
Java
数组
2022-08-26
0
213
题解 | #删除有序链表中重复的元素-I#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ pub...
Java
链表
2022-08-26
0
226
题解 | #判断一个链表是否为回文结构#
public boolean isPail (ListNode head) { // write code here if (head == null || h...
链表
Java
2022-08-26
0
224
题解 | #链表相加(二)#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ pub...
Java
链表
2022-08-26
0
255
题解 | #删除链表的倒数第n个节点#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ pub...
链表
Java
2022-08-26
0
228
题解 | #买卖股票的最好时机(一)#
import java.util.*; public class Solution { /** * * @param prices int整型一维数组  ...
Java
2022-08-15
0
229
题解 | #最小花费爬楼梯#
static const auto io_sync_off = [](){ std::ios::sync_with_stdio(false); std::cout.tie(nullptr); std::cin.tie...
C++
2022-08-15
0
0
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页