上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 95 下一页
摘要: 简介 deque 对于插入和删除的性能代价远小于 vector 但是这是存在一定代价的. 参考链接 https://blog.csdn.net/wk_bjut_edu_cn/article/details/83714965 阅读全文
posted @ 2021-07-16 15:15 HDU李少帅 阅读(51) 评论(0) 推荐(0)
摘要: 简介 简单 code class StockSpanner { public: vector<int> v; vector<int> vv; StockSpanner() { //vector<int> v; } int next(int price) { v.push_back(price); i 阅读全文
posted @ 2021-07-14 22:01 HDU李少帅 阅读(104) 评论(0) 推荐(0)
摘要: 简介 TODO 参考 周志明 eclipse jvm 调优后的参数配置 与 简单注释 -vm D:/_DevSpace/jdk1.6.0_21/bin/javaw.exe -startup plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v2009 阅读全文
posted @ 2021-07-07 12:47 HDU李少帅 阅读(62) 评论(0) 推荐(0)
摘要: 简介 配置 Go Back / Go Forward 个人必须配置这两个否则会十分不爽. 阅读全文
posted @ 2021-07-06 23:16 HDU李少帅 阅读(456) 评论(0) 推荐(0)
摘要: 简介 .zshrc 里面进行设置 export QT_QPA_PLATFORM_PLUGIN_PATH=/mnt/hdd1/software/qt5_12_0/5.12.0/gcc_64/plugins/platforms 其中路径为自己设定的路径 阅读全文
posted @ 2021-07-06 21:44 HDU李少帅 阅读(1433) 评论(1) 推荐(0)
摘要: 简介 https://krunk.cn/kblog563.html 阅读全文
posted @ 2021-07-06 13:23 HDU李少帅 阅读(62) 评论(0) 推荐(0)
摘要: 简介 使用 volatile code /** * Created by lee on 2021/7/5. */ public class Counter { static volatile int flag = 0; public static void main(String[] args){ 阅读全文
posted @ 2021-07-05 16:56 HDU李少帅 阅读(166) 评论(0) 推荐(0)
摘要: 简介 select user.id, user.name,t.grade_sum from ( select user_id,sum(grade_num) as grade_sum from grade_info group by user_id having grade_sum = ( selec 阅读全文
posted @ 2021-07-01 16:17 HDU李少帅 阅读(126) 评论(1) 推荐(0)
摘要: 简介 联表查询, 相当于 inner join? 不是 因为不能用on select a.id, a.number, count(distinct b.number) as t_rank from passing_number as a, passing_number as b where a.nu 阅读全文
posted @ 2021-07-01 15:54 HDU李少帅 阅读(60) 评论(0) 推荐(0)
摘要: 简介 第二个select一定要起一个别名,否则会出错 注意子查询 select a.id, a.job, a.score from grade as a left join ( select job, avg(c.score) as score from grade as c group by c. 阅读全文
posted @ 2021-07-01 15:53 HDU李少帅 阅读(30) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 95 下一页