上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 计算机网络学习。 教材:自顶向下第七版,公开课:b站中科大老师 阅读全文
posted @ 2021-02-18 09:24 DengSchoo 阅读(481) 评论(0) 推荐(0)
摘要: JAVA描述的设计模式 阅读全文
posted @ 2021-02-01 22:46 DengSchoo 阅读(192) 评论(0) 推荐(0)
摘要: class Solution { public: int cnt = 0; int numberOfMatches(int n) { // 偶数 / 2 // 奇数 产生 (n - 1) / 2 + 1 个队伍 if (n == 1) return cnt; if (n % 2 == 0) { cn 阅读全文
posted @ 2020-12-13 16:56 DengSchoo 阅读(87) 评论(0) 推荐(0)
摘要: C++实现高精度模板, 不是全高精度实现 阅读全文
posted @ 2020-12-05 19:45 DengSchoo 阅读(219) 评论(0) 推荐(0)
摘要: 一个常见面试题,递归调用,将有序链表转为搜索二叉树和搜索二叉平衡树 阅读全文
posted @ 2020-10-22 16:55 DengSchoo 阅读(125) 评论(0) 推荐(0)
摘要: Linux学习笔记第一部分 阅读全文
posted @ 2020-10-08 10:42 DengSchoo 阅读(199) 评论(0) 推荐(0)
摘要: Linux上常用软件安装,包括数据库,服务器、还介绍了负载均衡和反向代理 阅读全文
posted @ 2020-09-19 16:01 DengSchoo 阅读(287) 评论(0) 推荐(0)
摘要: 思路: 暴力。 class Solution { public: int countGoodTriplets(vector<int>& arr, int a, int b, int c) { int cnt = 0; for(int i = 0; i < arr.size(); i++){ for 阅读全文
posted @ 2020-08-08 16:29 DengSchoo 阅读(162) 评论(0) 推荐(0)
摘要: LeetCode 199周赛 前三题题解 阅读全文
posted @ 2020-08-03 20:22 DengSchoo 阅读(138) 评论(0) 推荐(0)
摘要: #2020蓝桥杯十一届七月省赛CB组 考生须知 A:跑步训练 // 模拟 #include <stdio.h> #include <iostream> #include <map> using namespace std; int main() { int start = 1000; int fla 阅读全文
posted @ 2020-07-28 17:40 DengSchoo 阅读(787) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页