摘要: hadoop3.22,flink1.13,kafka2.7.0,zookeeper3.6.3等安装包…… 下载地址: 链接:https://pan.baidu.com/s/1eHKkQw2ymnfq2p1XIzOCjw提取码:i29n 其他集群搭建: Zookeep集群搭建(亲测可用) 1.准备工作 阅读全文
posted @ 2022-01-06 20:06 星予 阅读(1815) 评论(0) 推荐(0) 编辑
摘要: 记一下今天折腾了好久的一个错误。启动standalone集群后。找到web-ui,点taskmanagers,出现列表,然后点任意taskmanager进行查看信息。右上角一直弹Internal server error。查看日志,报错如下: 当时正在跑一个任务,以为任务有问题,就又在本地用idea 阅读全文
posted @ 2022-01-05 19:19 星予 阅读(104) 评论(0) 推荐(0) 编辑
摘要: hadoop3.22,flink1.13,kafka2.7.0,zookeeper3.6.3等安装包…… 下载地址: 链接:https://pan.baidu.com/s/1eHKkQw2ymnfq2p1XIzOCjw 提取码:i29n 1.准备工作 三台虚拟机分别为:Flink1,Flink2,F 阅读全文
posted @ 2022-01-04 16:39 星予 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 15. 三数之和 class Solution { public List<List<Integer>> threeSum(int[] nums) { Arrays.sort(nums); List<List<Integer>> res = new ArrayList<>(); for(int k 阅读全文
posted @ 2021-11-11 22:49 星予 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 11. 盛最多水的容器 双指针,移动短板,更新结果 class Solution { public int maxArea(int[] height) { int i = 0, j = height.length - 1, res = 0; while(i < j) { res = height[i 阅读全文
posted @ 2021-11-03 09:51 星予 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 5. 最长回文子串 1.状态定义 //dp[i][j]表示s[i…j]是否为回文串 2.状态转移方程 dp[i][j] = (s[i] == s[j]) && dp[i + 1][j - 1] 3.边界值处理 dp[i][i] = true class Solution { public Strin 阅读全文
posted @ 2021-10-30 18:10 星予 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 4. 寻找两个正序数组的中位数 1 class Solution { 2 public double findMedianSortedArrays(int[] nums1, int[] nums2) { 3 int n = nums1.length; 4 int m = nums2.length; 阅读全文
posted @ 2021-10-30 14:47 星予 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 76. 最小覆盖子串 class Solution { public String minWindow(String s, String t) { //记录字符串当前s窗口中各字符的数量 HashMap<Character, Integer> hs = new HashMap<>(); //记录字符 阅读全文
posted @ 2021-10-29 23:34 星予 阅读(35) 评论(0) 推荐(0) 编辑
摘要: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode() {} * ListNode(int val) { this.val = val; } 阅读全文
posted @ 2021-10-29 21:43 星予 阅读(12) 评论(0) 推荐(0) 编辑
摘要: class LRUNode{ String key; Object value; LRUNode next; public LRUNode(String key, Object value) { this.key = key; this.value = value; } } public class 阅读全文
posted @ 2021-10-19 15:10 星予 阅读(39) 评论(0) 推荐(0) 编辑