摘要:
232场周赛 class Solution { // 暴力 public: bool areAlmostEqual(string s1, string s2) { int len = s1.length(); int cnt = 0; int idx1 = 0, idx2 = 0; string t 阅读全文
摘要:
计算机网络学习。 教材:自顶向下第七版,公开课:b站中科大老师 阅读全文
摘要:
JAVA描述的设计模式 阅读全文
摘要:
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 阅读全文
摘要:
C++实现高精度模板, 不是全高精度实现 阅读全文
摘要:
一个常见面试题,递归调用,将有序链表转为搜索二叉树和搜索二叉平衡树 阅读全文
摘要:
Linux学习笔记第一部分 阅读全文
摘要:
Linux上常用软件安装,包括数据库,服务器、还介绍了负载均衡和反向代理 阅读全文
摘要:
思路: 暴力。 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 阅读全文
摘要:
LeetCode 199周赛 前三题题解 阅读全文