虚拟乌冬面

文章
6
资源
0
加入时间
2年10月18天

elasticsearch 6.1集群的安装

安装的需求  jdk版本:open-jdk.1.8具体安装1.创建一个用户(注意es不能用root用户启动,所以这一步是必须的)groupadd elasticuseradd elastic -g elasticchown -R elastic:elastic /opt/elasticsearch/2.修改系统配置1.解决:(max virtual memory a

3D数学 ---- 矩阵的几何解释

一般来说,方阵能描述任意线性变换。线性变换保留了直线和平行线,但原点没有移动。线性变换保留直线的同时,其他的几何性质如长度、角度、面积和体积可能被变换改变了。从非技术意义上说,线性变换可能“拉伸”坐标系,但不会“弯曲”或“卷折”坐标系。 矩阵是怎样变换向量的向量在几何上能被解释成一系列与轴平行的位移,一般来说,任意向量v都能写成“扩展”形式:另一种略有差别的形式为:注意

leetcode算法: Find the Difference

Given two strings s and t which consist of only lowercase letters.String t is generated by random shuffling string s and then add one more letter at a random position.Find the letter that was added in...