上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 41 下一页

2022年3月11日

Zookeeper Watcher实现原理

摘要: Zookeeper的Watcher 机制的实现原理 - 吴振照 - 博客园 (cnblogs.com) 阅读全文

posted @ 2022-03-11 17:05 MaXianZhe 阅读(22) 评论(0) 推荐(0) 编辑

Znode结构

摘要: 1. Znode 的数据模型 Znode 是 ZooKeeper 中数据的最小单元,每个 Znode 都兼具文件和目录两种特点,既能像文件一样保存和维护数据,又可以由一系列使用斜杠(/)进行分割的方式作为路径标识的一部分。每个 Znode 都有以下三部分组成。 Stat:状态信息,用于存储该 Zno 阅读全文

posted @ 2022-03-11 12:23 MaXianZhe 阅读(291) 评论(0) 推荐(0) 编辑

2022年2月15日

DDD之 聚合根 实体 值对象

摘要: 阅读全文

posted @ 2022-02-15 11:23 MaXianZhe 阅读(39) 评论(0) 推荐(0) 编辑

2022年2月11日

NC_150_BINARY_TREE_COUNT NC_151_GCD NC_156_FIND_ONCE_NUMBER

摘要: package org.example.interview.practice; /** * @author xianzhe.ma * @date 2021/8/22 * 左子树的数量乘以右子树的数量 */ public class NC_150_BINARY_TREE_COUNT { private 阅读全文

posted @ 2022-02-11 18:10 MaXianZhe 阅读(28) 评论(0) 推荐(0) 编辑

NC_142_MAX_DUPSUBSTR NC_149_KMP

摘要: package org.example.interview.practice; /** * @author xianzhe.ma * @date 2021/11/7 */ public class NC_142_MAX_DUPSUBSTR { public int solve (String a) 阅读全文

posted @ 2022-02-11 18:09 MaXianZhe 阅读(24) 评论(0) 推荐(0) 编辑

NC_131_GetMedian NC_132_Joseph_circle NC_133_ODDEVENLIST

摘要: package org.example.interview.practice; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Objects; /** 阅读全文

posted @ 2022-02-11 18:02 MaXianZhe 阅读(30) 评论(0) 推荐(0) 编辑

NC_126_MIN_MONEY NC_127_LCS NC_128_MAXWATER

摘要: package org.example.interview.practice; import java.util.Arrays; /** * @author xianzhe.ma * @date 2021/8/16 */ public class NC_126_MIN_MONEY { public 阅读全文

posted @ 2022-02-11 16:53 MaXianZhe 阅读(33) 评论(0) 推荐(0) 编辑

NC_121_Permutation NC_122_MATCH_REGEX NC_123_TREE_SERIALIZE NC_125_MAX_LEN_SUB_ARRAY_EQUALSK

摘要: package org.example.interview.practice; /** * @author xianzhe.ma * @date 2021/11/3 */ import java.util.*; public class NC_121_Permutation { public Arr 阅读全文

posted @ 2022-02-11 16:53 MaXianZhe 阅读(36) 评论(0) 推荐(0) 编辑

NC_111_MAXVALUE NC_113_CHECK_IP NC_119_SMALLEST_K

摘要: package org.example.interview.practice; import java.util.Arrays; /** * @author xianzhe.ma * @date 2021/8/14 */ public class NC_111_MAXVALUE { public S 阅读全文

posted @ 2022-02-11 15:39 MaXianZhe 阅读(31) 评论(0) 推荐(0) 编辑

NC_100_ATOI NC_102_lowestCommonAncestor NC_104_COMPARE_VERSION NC_109_ISLAND_NUM

摘要: package org.example.interview.practice; /** * @author xianzhe.ma * @date 2021/11/3 */ public class NC_100_ATOI { public int atoi(String str) { // writ 阅读全文

posted @ 2022-02-11 15:38 MaXianZhe 阅读(30) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 41 下一页

导航