码迷,mamicode.com
首页 >  
搜索关键字:make modules_install    ( 11172个结果
leetcode-163
这个题很简单,而且没什么条件限制,实际上应该加上复杂度等限制的。 一个有趣的解法就是投票 func majorityElement(nums []int) int { kv := make(map[int]int) max := 0 res := 0 for _, v := range nums { ...
分类:其他好文   时间:2020-03-14 00:51:18    阅读次数:56
动态规划
动态规划 分析流程 递推(递归+记忆化) 状态定义 状态转移方程 最优子结构 爬楼梯 题目来源 "LeetCode 70. Climbing Stairs" 解题思路 方法一 定义状态 表示n阶台阶的总走法数,则状态方程为 精简解题 题目 给你一个数组,第i个元素代表某个股票第i天的价格,现在只允许 ...
分类:其他好文   时间:2020-03-13 14:35:18    阅读次数:57
buildroot编译文件系统,出现mount: you must be root. can't open /dev/console: Permission denied这种错误。
设置好menuconfig后,sudo make 然后拷到nfs目录,启动后出现错误如图: 此时的bin目录下文件状态 使用sudo chown root * -R后,状态为: 这条命令的意思是更改当前目录下所有的文件的owner(就是所有者)为root,-R意思是循环遍历,如果当前目录下有子目录, ...
分类:其他好文   时间:2020-03-13 01:29:25    阅读次数:142
ElasticSearch-聚合bucket学习
DELETE cars PUT cars { "mappings": { "transactions": { "properties": { "price": { "type":"long" }, "color": { "type":"keyword" }, "make": { "type":"ke ...
分类:其他好文   时间:2020-03-12 19:05:07    阅读次数:67
JumpServer本地部署
CentOS7.7部署Jumpserver系统:CentOS7IP:172.16.75.1目录:/opt数据库:mariadb代理:nginx###1.开始安装#防火墙与selinux设置说明,如果已经关闭了防火墙和Selinux的用户请跳过设置systemctlstopfirewalldsetenfore0sed-i"s/SELINUX=enforcing/SELINUX=disabled/g"
分类:其他好文   时间:2020-03-12 10:10:25    阅读次数:84
【学校个人赛】two operations 想法题 基础数学
先上题目: C. Two operations time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given an ...
分类:其他好文   时间:2020-03-11 19:28:17    阅读次数:66
ArcGIS Pro C#二次开发-删除字段
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co ...
分类:Windows程序   时间:2020-03-11 19:26:00    阅读次数:118
产生makefiles文件后,make命令不可用
baidu后,看到有方法说,找到MinGW 安装路径下的mingw32-make.exe文件,修改为make.exe 注意:上述办法确实有效,不过会对cmake产生影响,在进行cmake时,会提示找不到可以执行Makefiles文件的可执行程序, 个人分析,cmake默认使用mingw32-make ...
分类:其他好文   时间:2020-03-10 20:05:34    阅读次数:61
redis-安装
1,下载 redis-5.0.7.tar.gz 2, 上传到linux /opt目录下 3.,tar -zxvf redis-5.0.7.tar.gz 4,make 如果包cc或者gcc错误 yum install gcc-c++ -y 5,在执行make,发现报xxx 因为刚刚运行make,虽然没 ...
分类:其他好文   时间:2020-03-10 20:04:40    阅读次数:56
IPTABLES GeoIP Addon
准备xtables addons 3.0 2018年02月版本 环境检查是否满足需求,具体查看以下链接 如果要升级内核,参考以下 内核升级完成后,安装内核开发包(centos, fedora内核不用升级) 安装组件 卸载旧版冲突组件 安装新版 创建编译目录 安装GeoIP Database 使用ip ...
分类:其他好文   时间:2020-03-10 15:39:39    阅读次数:88
11172条   上一页 1 ... 70 71 72 73 74 ... 1118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!