PrinceZaZa
PrinceZaZa
全部文章
分类
面试经验(2)
题解(2)
归档
标签
去牛客网
登录
/
注册
PrinceZaZa的博客
全部文章
(共7篇)
题解 | #浙大不同难度题目的正确率#
select qd.difficult_level, sum(if(qpd.result = 'right', 1, 0)) / count(qpd.question_id) as&nb...
2022-10-30
0
281
题解 | #查看不同年龄段的用户明细#
select device_id, gender, case when age >= 20 and&nbs...
2022-10-30
0
277
题解 | #统计每个学校各难度的用户平均刷题数#
select university, difficult_level, round( count(q.question_id) / count(distinct&nbs...
2022-10-29
0
336
题解 | #返回所有价格在 3美元到 6美元之间的产品的名称和价格#
import java.util.*; public class Solution { public int findKth(int[] a, int n, int k) { //使用小根堆 PriorityQueue<Integer> heap...
Java
2022-06-26
0
307
题解 | #返回所有价格在 3美元到 6美元之间的产品的名称和价格#
select prod_name, prod_price from Products where prod_price between 3 and 6 order by prod_price asc
Mysql
2022-05-26
0
357
上海汉得信息技术电话面试
自我介绍 Spring的Ioc和aop ioc:控制反转,对象创建(实例化、管理)的权利交给spring容器,解决对象之间的耦合问题 aop:面向切面编程,隔离业务的逻辑,降低耦合性。切面,切点,通知,连接点 SprigSecurity原理 用于认证、授权。基本原理就是应用了To...
Java
2022-05-17
6
1292
成都现实增强面经
mysql多表查询(老师,学生,课程,成绩) 常见的单例模式(饿汉式,懒汉式,饿汉式同步锁,饿汉式双重校验锁,静态内部类,枚举类) 如何唤醒线程(synchronized方式:等待 wait 唤醒 notify唤醒 还有一个 notifyAll 唤醒全部;ReenTrantLock方式:lock.n...
Java
2022-05-07
0
408