搜索结果
查询Tags标签: 15,共有 1024条记录-
算法刷题计划一----数据结构2-15(leetCode)
108. 将有序数组转换为二叉搜索树 给你一个整数数组 nums ,其中元素已经按 升序 排列,请你将其转换为一棵 高度平衡 二叉搜索树。 高度平衡 二叉树是一棵满足「每个节点的左右两个子树的高度差的绝对值不超过 1 」的二叉树。 示例 1: 输入:nums = [-10,-3,0,5,9] 输出…
2021/9/5 22:08:33 人评论 次浏览 -
hadoop学习 15 9.2 HDFS 第一种开机启动(格式化后启动)时NameNode元数据目录的变化
叫法: edits文件:编辑日志文件 fsimage文件:HDFS镜像文件 第一种开机启动(格式化之后再启动,相当于一个新的集群),创建新的fsimage和edits文件
2021/9/5 22:06:56 人评论 次浏览 -
hadoop学习 15 9.2 HDFS 第一种开机启动(格式化后启动)时NameNode元数据目录的变化
叫法: edits文件:编辑日志文件 fsimage文件:HDFS镜像文件 第一种开机启动(格式化之后再启动,相当于一个新的集群),创建新的fsimage和edits文件
2021/9/5 22:06:56 人评论 次浏览 -
redis中的哈希表和渐近式rehash(redis6.0.15)
首先,redis中的哈希表的数据结构是这样的。 typedef struct dictht {dictEntry **table;unsigned long size;unsigned long sizemask;unsigned long used; } dictht;table成员是一个dictEntry类型的二级指针,为什么是二级指针呢?dictht又是什么类型呢? size成员是目前…
2021/9/5 19:39:45 人评论 次浏览 -
redis中的哈希表和渐近式rehash(redis6.0.15)
首先,redis中的哈希表的数据结构是这样的。 typedef struct dictht {dictEntry **table;unsigned long size;unsigned long sizemask;unsigned long used; } dictht;table成员是一个dictEntry类型的二级指针,为什么是二级指针呢?dictht又是什么类型呢? size成员是目前…
2021/9/5 19:39:45 人评论 次浏览 -
数据分析系列 之python中拓展库SciPy的使用
import numpy as np aArray = np.array([(1,2,3),(4,5,6)]) 输入: aArray 输出: array([(1,2,3), (4,5,6)]) bArray = np.linspace(1,2,5,endpoint=False) 输入: bArray 输出: [1. 1.2 1.4 1.6 1.8] cArray = np.linspace(1,49,25,dtype=int) 输入: print(cArray) 输…
2021/9/5 9:35:51 人评论 次浏览 -
数据分析系列 之python中拓展库SciPy的使用
import numpy as np aArray = np.array([(1,2,3),(4,5,6)]) 输入: aArray 输出: array([(1,2,3), (4,5,6)]) bArray = np.linspace(1,2,5,endpoint=False) 输入: bArray 输出: [1. 1.2 1.4 1.6 1.8] cArray = np.linspace(1,49,25,dtype=int) 输入: print(cArray) 输…
2021/9/5 9:35:51 人评论 次浏览 -
团体程序设计天梯赛-练习集 [ L1-005 考试座位号 (15 分) ]
题目描述每个 PAT 考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们…
2021/9/3 17:06:18 人评论 次浏览 -
团体程序设计天梯赛-练习集 [ L1-005 考试座位号 (15 分) ]
题目描述每个 PAT 考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们…
2021/9/3 17:06:18 人评论 次浏览 -
ES高级(15) 使用基础(3)安装(3) Windows 集群
1 部署集群 1) 创建 elasticsearch-cluster 文件夹,在内部复制三个 elasticsearch 服务2) 修改集群文件目录中每个节点的 config/elasticsearch.yml 配置文件 node-1001 节点 node-1002 节点 node-1003 节点 2 启动集群1) 启动前先删除每个节点中的 data 目录中所…
2021/9/2 7:06:07 人评论 次浏览 -
ES高级(15) 使用基础(3)安装(3) Windows 集群
1 部署集群 1) 创建 elasticsearch-cluster 文件夹,在内部复制三个 elasticsearch 服务2) 修改集群文件目录中每个节点的 config/elasticsearch.yml 配置文件 node-1001 节点 node-1002 节点 node-1003 节点 2 启动集群1) 启动前先删除每个节点中的 data 目录中所…
2021/9/2 7:06:07 人评论 次浏览 -
Flink基础(121):FLINK-SQL语法 (15) DQL(7) OPERATIONS(4) 窗口 (2) 窗口聚合
1 Window TVF Aggregation Streaming Window aggregations are defined in the GROUP BY clause contains “window_start” and “window_end” columns of the relation applied Windowing TVF. Just like queries with regular GROUP BY clauses, queries with a grou…
2021/8/27 2:36:05 人评论 次浏览 -
Flink基础(121):FLINK-SQL语法 (15) DQL(7) OPERATIONS(4) 窗口 (2) 窗口聚合
1 Window TVF Aggregation Streaming Window aggregations are defined in the GROUP BY clause contains “window_start” and “window_end” columns of the relation applied Windowing TVF. Just like queries with regular GROUP BY clauses, queries with a grou…
2021/8/27 2:36:05 人评论 次浏览 -
Flink基础(120):FLINK-SQL语法 (14) DQL(6) OPERATIONS(3) 窗口 (1) Windowing table-valued functions (Windowi
Windowing table-valued functions (Windowing TVFs) Streaming 0 简介 Windows are at the heart of processing infinite streams. Windows split the stream into “buckets” of finite size, over which we can apply computations. This document focuses on how w…
2021/8/27 2:36:04 人评论 次浏览 -
Flink基础(120):FLINK-SQL语法 (14) DQL(6) OPERATIONS(3) 窗口 (1) Windowing table-valued functions (Windowi
Windowing table-valued functions (Windowing TVFs) Streaming 0 简介 Windows are at the heart of processing infinite streams. Windows split the stream into “buckets” of finite size, over which we can apply computations. This document focuses on how w…
2021/8/27 2:36:04 人评论 次浏览