09 2021 档案
摘要:public boolean isCircle() { if(first == null || first.next == null) return false; Node<U> slow = first; Node<U> fast = first.next; int i = 1; while (f
阅读全文
摘要:首先我们需要检查一下CPU VT-x状态是否启用。 下载LeoMoon CPU-V 检查一下CPU VT-x状态是否启用。 工具下载地址:https://leomoon.com/static/?file=leomoon-cpu-v_win.zip 图2 如果未启用 VT-x启用状态这里会有一个大红叉
阅读全文
摘要:调用 insteadList 反转数组 public Node<U> reverseList(Node<U> head) { if(head == null ) return null; Node<U> new_head = reverseList(head.next); if(new_head !
阅读全文
摘要:Gnirehtet – 为 Android 设备提供反向网络连接[Windows、macOS、Linux] 准备: gnirehtet (选择gnirehtet-rust-win64.zip):https://github.com/Genymobile/gnirehtet 使用:压缩放在喜欢的地方,
阅读全文
摘要:公式法有两个公式: 立方和公式:a^3+b^3=(a+b) (a^2-ab+b^2)立方差公式:a^3-b^3=(a-b) (a^2+ab+b^2)
阅读全文
摘要:A是B的充分条件,A,C,D...任意一个存在都能使B成立。 A是B的必要条件,A+C+D多个条件才能推出B 取自: https://www.zhihu.com/question/30469121
阅读全文
摘要:四级词汇 Word List 1 sincere 真诚的 mood 情绪 static 稳定的 senator 议员 hobby 兴趣 lad 小伙子 equip 装备 frown 蹙眉 fasten 紧抓 software 软件 stir 搅拌 distribution 分配 flexible 可
阅读全文