Loading

邢栋博客

golang 数组删除元素

package main import "fmt" func main(){ a := []int{0,1,2,3,4,5,6,7,8,9} //a = a[1:]//删除开头的第一个元素 unset 0 //a = a[3:] //删除开头的前3个元素 unset 0 1 2 //a = append(a[:0],a[1:]...) //删除开头的第一个元素,不移动数据指针,将后面的数据向开头移动 //a = append(a[:0],a[3:]...) //删除开头的前3个元素,不移动数据指针,将后面...

[golang]map的value赋值和遍历赋值

map的value赋值 package main import "fmt" type Student struct { Name string } var list map[string] Student //map的Value赋值 func main() { list = make(map[string] Student) student := Student{"action"} list["student"] = student //list["student"].Name = "xd" //错...

抢红包之二倍均值法

/** * 二倍均值法 * * @param $nums //分配人数 * @param $money //分配金额 * @return array */ function assignRedBag($nums,$money){ $result = [];//分配结果 $surplusMoney = $money;//剩余金额 for ($i=0;$i<$nums;$i++){ //最后一次分配,直接返回剩余金额 if($i+1 == $nums){ ...

Mac下使用clion调试php源码

第一大步安装php 1、安装libiconv依赖 brew install libiconv 2、安装php wget https://www.php.net/distributions/php-7.4.22.tar.gz tar -zxvf php-7.4.22.tar.gz cd php-7.4.23 ./configure --prefix=/Users/action/soft/php7 --with-config-file-path=/Users/action/soft/php7/etc --with-iconv =/usr/local/opt/...

算法面试题

仅供参考: 用过哪些机器学习算法 1.说一下xgboost的原理 2.GBDT的原理以及常用的调参的参数 3.一个数组,找出第k大的数 4.快排的思想是什么,排序算法哪些时间复杂度比较低 5.特征选择方法都有用过哪些,特征重要性 6.除了k-means,还可以用什么聚类方法,或者你还熟悉什么聚类方法 7.朴素贝叶斯原理 8.TF-IDF原理 9.你都知道哪些分类算法 10.LDA的原理是什么? 11.你用过Python 那么你Python都用过哪些机器学习的库? 12.逻辑回归的思想和过程,损失函数是什么,如何训练得到最优参数 13.如何判断模型有没有过...

大数据面试题

hadoop相关试题 1.MapTask并行机度是由什么决定的? 由切片数量决定的。 MR是干什么的? MR将用户编写的业务逻辑代码和自带的默认组件结合起来组成一个完整的分布式应用程序放到hadoop集群上运行。 MR的实例进程: driver(mr的job提交客户端) MRAppMaster MapTask ReduceTask combiner和partition的作用: combiner的意义就是对每一个maptask的输出进行局部汇总,以减小网络传输量 partition的默认实现是hashpartition,是map端将数据按照re...

centos7 执行启动邮件服务报错-systemctl start postfix

错误信息如下 Job for postfix.service failed because the control process exited with error code. See "systemctl status postfix.service" and "journalctl -xe" for details. 解决办法 修改 /etc/postfix/main.cf的设置 inet_protocols = ipv4 inet_interfaces = all

最完美 ThinkPHP(tp) 的 Nginx 配置文件

系统 LSB Version: :....(太长了) Distributor ID: CentOS Description: CentOS Linux release 8.2.2004 (Core) Release: 8.2.2004 Codename: Core 使用官网给的没有生效 location / { // …..省略部分代码 if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; } } 于是 s...

centos下openresty+lua入门实践

安装openresty 1、安装依赖开发库 yum install pcre-devel openssl-devel gcc curl postgresql-devel 2、下载 + 编译 + 安装 wget https://openresty.org/download/openresty-1.19.3.1.tar.gz 我刚开始先下载的1.19.3.1版本,但是在编译时增加nginx_upstream_check_module模块,一直报错,错误信息如下 ./configure: error: the ngx_http_upstream_check_m...

[docker-es]-None of the configured nodes are available

问题: springboot连接我用docker启动的es服务时报错,None of the configured nodes are available 解决方案: 1、先通过http://localhost:9200/查看参数cluster_name 和 springboot里配置的参数cluster_name是否一致,如果不一致,要修改成一致 2、如果通过修改cluster_name参数仍然无法解决,这时候就要看下Spring Data Elasticsearch 依赖 和 Elasticsearch的版本对应关系了 Spring Data ...