上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 49 下一页
摘要: findMedianSortedArrays 基本思路:通过指针按顺序移动来判断大小顺序,思路和有一道用链表求中间值一样; class Solution { public double findMedianSortedArrays(int[] nums1, int[] nums2) { double 阅读全文
posted @ 2019-11-28 12:57 抽象Java 阅读(362) 评论(0) 推荐(0) 编辑
摘要: http://c.biancheng.net/view/1361.html 总结: 一、统一建模语言简介 1、类、接口、类图 2、类之间的关系 1)依赖; 2)关联; 3)聚合; 4)组合; 5)泛化; 6)实现; 二、 设计模式分类 1、接口型模式: 1)适配器模式; 2)外观模式; 3)合成模式 阅读全文
posted @ 2019-11-27 10:41 抽象Java 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Spiral_Matrix https://leetcode-cn.com/problems/spiral-matrix/ //当行数只有一行: 1、 n = 1; m -> 0; //当列数只有一列 2、m = 1; n -> 0; //行数为 n, 列数为m 3、 。。。。。。 。。。。。。 。 阅读全文
posted @ 2019-11-25 19:05 抽象Java 阅读(115) 评论(0) 推荐(0) 编辑
摘要: https://www.douban.com/note/330562764/ https://blog.csdn.net/Irving_zhang/article/details/78835035 https://www.kancloud.cn/kancloud/data-structure-and 阅读全文
posted @ 2019-11-25 09:35 抽象Java 阅读(97) 评论(0) 推荐(0) 编辑
摘要: bash 脚本 先创建一个文件 #!/bin/bash /usr/local/zookeeper/zookeeper-3.4.10/bin/zkServer.sh start 保存,执行 [root@hadoop ~]# ./zookeeper_run.sh 发现如下没有权限 -bash: ./zo 阅读全文
posted @ 2019-11-24 16:24 抽象Java 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 关闭占用端口 netstat -aon|findstr "8060 找端口对应应用 tasklist|findstr "PID号" 关闭 taskkill /f /t /im javaw.exe 阅读全文
posted @ 2019-11-24 09:27 抽象Java 阅读(127) 评论(0) 推荐(0) 编辑
摘要: blue bossa 阅读全文
posted @ 2019-11-21 00:53 抽象Java 阅读(124) 评论(0) 推荐(0) 编辑
摘要: mirror public boolean isMirror(node left, node right){ if(null == right && null == left){ return true; }else if( null == right || null == left ){ retu 阅读全文
posted @ 2019-11-20 08:53 抽象Java 阅读(115) 评论(0) 推荐(0) 编辑
摘要: api 调用发现错误 Mon Nov 18 23:04:31 CST 2019, RpcRetryingCaller{globalStartTime=1574089469858, pause=100, retries=35}, org.apache.hadoop.hbase.MasterNotRun 阅读全文
posted @ 2019-11-19 00:22 抽象Java 阅读(4226) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/lyflyyvip/article/details/85012579 阅读全文
posted @ 2019-11-18 23:04 抽象Java 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 49 下一页