牛客344132035号
牛客344132035号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客344132035号的博客
全部文章
/ 题解
(共20篇)
题解 | #判断一个链表是否为回文结构#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ //时间复杂度O(n) 空间复杂度O(1) public class Solution { ...
Java
2021-12-15
0
435
题解 | #两个链表的第一个公共结点#
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ //时间复杂度:O(m+n) 空间复杂度O(1)...
Java
2021-12-14
0
317
题解 | #求连续子数组的最大和#
public class Solution { public int FindGreatestSumOfSubArray(int[] array) { int thisSum=0, maxSum=array[0]; for(int i=0;i<array...
Java
2021-12-14
0
285
题解 | #删除有序链表中重复的元素-I#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** * * @...
Java
2021-11-30
0
318
题解 | #分组排序练习题#
SELECT university,AVG(question_cnt) avg_question_cnt from user_profile GROUP BY university ORDER BY AVG(question_cnt)
Mysql
2021-11-04
0
291
题解 | #查看学校名称中含北京的用户#
select device_id,age,university from user_profile where university like '%北京%' # _匹配任意一个字符 #%匹配零个或多个字符
Mysql
2021-11-04
0
395
题解 | #查找除复旦大学的用户信息#
# select device_id,gender,age,university from user_profile where university <> '复旦大学' # select device_id,gender,age,university from user_profile...
Mysql
2021-11-04
54
1113
题解 | #链表中环的入口结点#
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } } */ //时间复杂度:O(n),空间复杂度:O(n)...
Java
2021-11-04
0
460
题解 | #合并两个有序的数组#
import java.util.*; public class Solution { public void merge(int A[], int m, int B[], int n) { int length = m + n -1; for(int i =...
Java
2021-11-02
0
308
题解 | #用两个栈实现队列#
import java.util.Stack; public class Solution { Stack<Integer> stack1 = new Stack<Integer>(); Stack<Integer> stack2 = new S...
Java
2021-11-02
0
274
首页
上一页
1
2
下一页
末页