上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: 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 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 计算机网络学习。 教材:自顶向下第七版,公开课:b站中科大老师 阅读全文
posted @ 2021-02-18 09:24 DengSchoo 阅读(374) 评论(0) 推荐(0) 编辑
摘要: JAVA描述的设计模式 阅读全文
posted @ 2021-02-01 22:46 DengSchoo 阅读(151) 评论(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 阅读(66) 评论(0) 推荐(0) 编辑
摘要: C++实现高精度模板, 不是全高精度实现 阅读全文
posted @ 2020-12-05 19:45 DengSchoo 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 一个常见面试题,递归调用,将有序链表转为搜索二叉树和搜索二叉平衡树 阅读全文
posted @ 2020-10-22 16:55 DengSchoo 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Linux学习笔记第一部分 阅读全文
posted @ 2020-10-08 10:42 DengSchoo 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Linux上常用软件安装,包括数据库,服务器、还介绍了负载均衡和反向代理 阅读全文
posted @ 2020-09-19 16:01 DengSchoo 阅读(207) 评论(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 阅读(137) 评论(0) 推荐(0) 编辑
摘要: LeetCode 199周赛 前三题题解 阅读全文
posted @ 2020-08-03 20:22 DengSchoo 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页