上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 48 下一页
摘要: kafka消费失败 搞半天是路径错误,但是不会报错 改为 job 就对了 阅读全文
posted @ 2019-11-17 15:53 李荣先辈Java 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 修改ip cd /etc/sysconfig/network-scripts/ vi ifcfg-ens33 修改网卡配置文件,将BOOTPROTO改为static(获取IP的方式静态),在最下面加入IP配置 IPADDR=192.168.1.177 NETMASK=255.255.255.0 GA 阅读全文
posted @ 2019-11-17 14:28 李荣先辈Java 阅读(175) 评论(0) 推荐(0) 编辑
摘要: kafka bin/kafka-server-start.sh config/server.properties & Hbase bin/hbase-daemon.sh start master bin/hbase-daemon.sh start regionserver Hbase 默认端口 16 阅读全文
posted @ 2019-11-09 12:19 李荣先辈Java 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 高音谱,低音谱 阅读全文
posted @ 2019-11-04 23:29 李荣先辈Java 阅读(672) 评论(0) 推荐(0) 编辑
摘要: lowest-common-ancestor-of-a-binary-tree 共同祖先 https://blog.csdn.net/zangdaiyang1991/article/details/94563586 阅读全文
posted @ 2019-11-03 23:57 李荣先辈Java 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 第k 大的元素 这题用递归出错了,划不来,一点都不好debug, 最重要的是抽线能力 阅读全文
posted @ 2019-11-03 20:10 李荣先辈Java 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 使用中序遍历 阅读全文
posted @ 2019-11-03 14:33 李荣先辈Java 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 二叉树的遍历 先序遍历:遍历顺序规则为(根左右) 中序遍历:遍历顺序规则为(左根右) 后序遍历:遍历顺序规则为(左右根) 其中,中遍历是从小到大 阅读全文
posted @ 2019-11-03 13:07 李荣先辈Java 阅读(91) 评论(0) 推荐(0) 编辑
摘要: LeetCode.62-unique-paths 思路:https://segmentfault.com/a/1190000016315625 阅读全文
posted @ 2019-10-30 12:33 李荣先辈Java 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 环形链表II 思路 https://www.cnblogs.com/springfor/p/3862125.html https://blog.csdn.net/u010292561/article/details/80444057 假设周长为 S AB + BC + n*S = 2 * ( AB 阅读全文
posted @ 2019-10-29 21:23 李荣先辈Java 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 48 下一页