会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Temper and Steel Assiduously.
DengSchoo
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
11
下一页
2021年3月15日
LeetCode 232场周赛
摘要: 232场周赛 class Solution { // 暴力 public: bool areAlmostEqual(string s1, string s2) { int len = s1.length(); int cnt = 0; int idx1 = 0, idx2 = 0; string t
阅读全文
posted @ 2021-03-15 21:30 DengSchoo
阅读(53)
评论(0)
推荐(0)
2021年2月18日
计算机网络知识总结-自顶向下-中科大讲授
摘要: 计算机网络学习。 教材:自顶向下第七版,公开课:b站中科大老师
阅读全文
posted @ 2021-02-18 09:24 DengSchoo
阅读(434)
评论(0)
推荐(0)
2021年2月1日
设计模式入门概念通俗理解
摘要: JAVA描述的设计模式
阅读全文
posted @ 2021-02-01 22:46 DengSchoo
阅读(165)
评论(0)
推荐(0)
2020年12月13日
LeetCode219周赛
摘要: 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
阅读(74)
评论(0)
推荐(0)
2020年12月5日
C++高精度模板
摘要: C++实现高精度模板, 不是全高精度实现
阅读全文
posted @ 2020-12-05 19:45 DengSchoo
阅读(202)
评论(0)
推荐(0)
2020年10月22日
有序链表转二叉搜索树、转二叉搜索平衡树(LeetCode108,109)
摘要: 一个常见面试题,递归调用,将有序链表转为搜索二叉树和搜索二叉平衡树
阅读全文
posted @ 2020-10-22 16:55 DengSchoo
阅读(108)
评论(0)
推荐(0)
2020年10月8日
《Linux命令行与shell编程大全》第一部分知识笔记
摘要: Linux学习笔记第一部分
阅读全文
posted @ 2020-10-08 10:42 DengSchoo
阅读(176)
评论(0)
推荐(0)
2020年9月19日
Linux上安装卸载软件
摘要: Linux上常用软件安装,包括数据库,服务器、还介绍了负载均衡和反向代理
阅读全文
posted @ 2020-09-19 16:01 DengSchoo
阅读(222)
评论(0)
推荐(0)
2020年8月8日
LeetCode 200场周赛
摘要: 思路: 暴力。 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
阅读(140)
评论(0)
推荐(0)
2020年8月3日
LeetCode 199场周赛
摘要: LeetCode 199周赛 前三题题解
阅读全文
posted @ 2020-08-03 20:22 DengSchoo
阅读(130)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
11
下一页
公告