摘要: https://blog.csdn.net/hellojoy/article/details/100707995 阅读全文
posted @ 2021-03-31 15:30 济默 阅读(51) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/p1279030826/article/details/106444841 阅读全文
posted @ 2021-03-29 09:30 济默 阅读(73) 评论(0) 推荐(0) 编辑
摘要: bin/hive --service metastore & 启一下元数据就可以了 阅读全文
posted @ 2021-03-28 21:45 济默 阅读(1085) 评论(0) 推荐(0) 编辑
摘要: 2021-03-05 21:59:23,607 INFO org.apache.flink.yarn.YarnClusterDescriptor [] - Deployment took more than 60 seconds. Please check if the requested reso 阅读全文
posted @ 2021-03-27 19:59 济默 阅读(1719) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1010029 阅读全文
posted @ 2021-03-27 19:57 济默 阅读(143) 评论(0) 推荐(0) 编辑
摘要: https://www.xmpan.com/944.html 阅读全文
posted @ 2021-03-27 17:10 济默 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 用树的结构遍历数组 package com.atguigu.datastructures.binarytree object ArrayTreeDemo { def main(args: Array[String]): Unit = { val arr = Array(1,2,3,4,5,6,7) 阅读全文
posted @ 2020-07-13 10:26 济默 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 二叉排序树的创建、遍历、删除 package com.atguigu.datastructures.binarytree /** * 二叉排序树的创建和遍历 * 删除,1.删除叶子节点,因为二叉排序树是单向的,需要在删除时,找到删除节点的父节点 * 2.先检索要删除节点,如果没有找到就退出;反之,找 阅读全文
posted @ 2020-07-13 10:23 济默 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 构建二叉树;实现前序、中序、后序遍历;两种删除节点的原则 package com.atguigu.datastructures.binarytree object BinaryTreeDemo { def main(args: Array[String]): Unit = { //先使用比较简单的方 阅读全文
posted @ 2020-07-05 22:08 济默 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 哈希表又叫散列表,这里用数组和链表实现 package com.atguigu.datastructures.hashtable import scala.util.control.Breaks._ object HashTableDemo { def main(args: Array[String 阅读全文
posted @ 2020-07-05 22:07 济默 阅读(290) 评论(0) 推荐(0) 编辑