阿奔的用户贡献
跳到导航
跳到搜索
2024年5月21日 (星期二)
- 15:242024年5月21日 (二) 15:24 差异 历史 +612 K8s 安装 →kubectl info
- 09:582024年5月21日 (二) 09:58 差异 历史 +105 Python →环境
- 09:102024年5月21日 (二) 09:10 差异 历史 0 Python →python
2024年5月20日 (星期一)
- 12:572024年5月20日 (一) 12:57 差异 历史 −57 Java 泛型 →>
- 10:232024年5月20日 (一) 10:23 差异 历史 +419 Java 泛型 无编辑摘要
- 10:072024年5月20日 (一) 10:07 差异 历史 +861 新 Java 泛型 创建页面,内容为“Java 泛型 泛型,即“参数化类型”,编写更通用、类型安全的代码。定义时由参数代替具体的类型,使用时传入具体的类型(即形参不指定类型,由实参指定)。 ==== 泛型类 ==== public class Box<T> { private T content; ... } Box<Integer> intBox = new Box<>(123); Box<String> stringBox = new Box<>("Hello, World!"); ==== 泛型方法 ==== private Node root; public <K extends Comparable<K>, V>…”
- 09:362024年5月20日 (一) 09:36 差异 历史 +827 新 Leetcode - 004 - Median of Two Sorted Arrays 创建页面,内容为“4. Median of Two Sorted Arrays Hard Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). Example 1: Input: nums1 = [1,3], nums2 = [2] Output: 2.00000 Explanation: merged array = [1,2,3] and median is 2. Example 2: Input: nums1 = [1,2], nums2 = [3,4] Output: 2.50000 Explanation: merged array = [1,2,3,4] and median is (2 + 3) / 2 = 2.…” 当前
2024年5月17日 (星期五)
- 14:412024年5月17日 (五) 14:41 差异 历史 +94 Java 常用语句 →初始化
- 14:222024年5月17日 (五) 14:22 差异 历史 +700 Leetcode - 002 - Add Two Numbers 无编辑摘要 当前
- 11:032024年5月17日 (五) 11:03 差异 历史 +25 Leetcode - 001 - Two Sum 无编辑摘要 当前
- 10:562024年5月17日 (五) 10:56 差异 历史 −28 Leetcode - 001 - Two Sum 无编辑摘要
2024年5月16日 (星期四)
- 09:512024年5月16日 (四) 09:51 差异 历史 −1 GitHub →Error
- 09:502024年5月16日 (四) 09:50 差异 历史 +69 GitHub 无编辑摘要
- 09:452024年5月16日 (四) 09:45 差异 历史 +1 GitHub →Repository
2024年5月15日 (星期三)
- 22:282024年5月15日 (三) 22:28 差异 历史 −12,314 Java 自定义方法 - BASE 页面内容被替换为“Java 自定义函数 - BASE {| class="wikitable" |+ !No !Method !Explain !Example |- |1 |isnull |(null, "", [], {}) = true | |- |2 |log, logerror, logwarn |log | |- |3 |dt |date, time | |- |4 |hash, md5 |sha, sha-256, md5, etc | |- |5 |base64, ubase64 |BASE64 | |- |6 |des, udes |DES crypt | |- |7 |str2list |String to List | |- |8 |str2map |String to Map | |- |9 |list2map |List to Map | |- |10 |reverse |reverse string, abc -> cba | |- |12 |rep |replace str…” 标签:替换 可视化编辑
- 22:222024年5月15日 (三) 22:22 差异 历史 −11,848 Java 自定义方法 - KAFKA →Sample
- 13:252024年5月15日 (三) 13:25 差异 历史 +113 Leetcode - 015 - 3Sum 无编辑摘要 当前
- 09:542024年5月15日 (三) 09:54 差异 历史 +304 Java 常用语句 →表达式
- 09:082024年5月15日 (三) 09:08 差异 历史 +134 科技类英文单词 无编辑摘要 标签:可视化编辑
2024年5月14日 (星期二)
- 22:402024年5月14日 (二) 22:40 差异 历史 +2 The Black Cloud 无编辑摘要 当前
- 21:562024年5月14日 (二) 21:56 差异 历史 +12,573 The Black Cloud 无编辑摘要 标签:可视化编辑
- 21:472024年5月14日 (二) 21:47 差异 历史 −2 The Black Cloud 无编辑摘要
- 16:332024年5月14日 (二) 16:33 差异 历史 −10 H2 无编辑摘要
- 16:292024年5月14日 (二) 16:29 差异 历史 −839 Redis 无编辑摘要
- 16:262024年5月14日 (二) 16:26 差异 历史 +1,928 新 Redis 基础 创建页面,内容为“===基本类型:=== ====String(字符串)==== set key value/get key *Max: 512M *内部编码有3种,int(8字节长整型)、embstr(<=39 Byte)、raw(>39 Byte) *应用场景: 共享session、分布式锁、计数器、限流 *C 语言的字符串是 char[] 实现的,而 Redis 使用 SDS(Simple Dynamic String)结构: struct sdshdr { unsigned int len; // 字符串长度 unsigned int free; // 空闲长度 char buf[]; …”
- 15:282024年5月14日 (二) 15:28 差异 历史 +58 Python redis →单机
- 10:142024年5月14日 (二) 10:14 差异 历史 +53 Leetcode - 322 - Coin Change 无编辑摘要 当前
- 10:122024年5月14日 (二) 10:12 差异 历史 +56 Leetcode - 002 - Add Two Numbers 无编辑摘要
- 10:102024年5月14日 (二) 10:10 差异 历史 +54 Leetcode - 001 - Two Sum 无编辑摘要
- 10:052024年5月14日 (二) 10:05 差异 历史 0 Leetcode - 015 - 3Sum →Solution
- 10:032024年5月14日 (二) 10:03 差异 历史 +671 Leetcode - 015 - 3Sum 无编辑摘要 标签:可视化编辑:已切换
- 09:242024年5月14日 (二) 09:24 差异 历史 +1,048 新 Leetcode - 015 - 3Sum 创建页面,内容为“15. 3Sum Medium Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the solution set must not contain duplicate triplets. Example 1: Input: nums = [-1,0,1,2,-1,-4] Output: <nowiki>[[-1,-1,2],[-1,0,1]]</nowiki> Explanation: nums[0] + nums[1] + nums[2] = (-1) + 0 + 1 = 0. nums[1] + nums[2] + nums[4] = 0 + 1 + (-1) = 0. nums[0] + nu…”
2024年5月13日 (星期一)
- 21:492024年5月13日 (一) 21:49 差异 历史 +110 被曲解的词 无编辑摘要
- 21:382024年5月13日 (一) 21:38 差异 历史 +3 从老佛爷的扇面少写一个字说起 无编辑摘要
- 21:312024年5月13日 (一) 21:31 差异 历史 −16 从老佛爷的扇面少写一个字说起 无编辑摘要
- 15:422024年5月13日 (一) 15:42 差异 历史 +94 Java 常用语句 →常见问题
- 15:052024年5月13日 (一) 15:05 差异 历史 +395 Postgresql基础 →Install 当前
- 09:472024年5月13日 (一) 09:47 差异 历史 +164 IntelliJ IDEA →本地目录及文件
2024年5月11日 (星期六)
- 16:562024年5月11日 (六) 16:56 差异 历史 +318 IntelliJ IDEA →依赖声明
- 16:132024年5月11日 (六) 16:13 差异 历史 +316 GitHub →Error
2024年5月10日 (星期五)
- 13:352024年5月10日 (五) 13:35 差异 历史 +34 Apache 无编辑摘要 标签:可视化编辑
- 13:342024年5月10日 (五) 13:34 差异 历史 +530 新 Apache 创建页面,内容为“Centos7 系统自带的 Apache 安装 yum install httpd systemctl start httpd # systemctl enable httpd === 配置 === vi /etc/httpd/conf/httpd.conf Alias /dev "/u01/Dev" <Directory "/u01/Dev"> Options Indexes MultiViews FollowSymLinks IndexOptions +Charset=utf-8 Allow from all Order allow,deny AllowOverride All Require all granted </Directory> === Error === ==== AH00686: cannot read directory for multi ==== SELinux 未关…” 标签:可视化编辑:已切换
2024年5月9日 (星期四)
- 11:212024年5月9日 (四) 11:21 差异 历史 +6 Leetcode - 322 - Coin Change 无编辑摘要
- 11:212024年5月9日 (四) 11:21 差异 历史 +6 Leetcode - 002 - Add Two Numbers 无编辑摘要
- 11:202024年5月9日 (四) 11:20 差异 历史 +6 Leetcode - 001 - Two Sum 无编辑摘要
- 11:202024年5月9日 (四) 11:20 差异 历史 +7 9912请你编程 无编辑摘要 当前
- 11:192024年5月9日 (四) 11:19 差异 历史 +96 目录 无编辑摘要
- 10:442024年5月9日 (四) 10:44 差异 历史 +31 科技类英文单词 无编辑摘要 标签:可视化编辑
- 10:382024年5月9日 (四) 10:38 差异 历史 +1,228 Find 无编辑摘要