码迷,mamicode.com
首页 >  
搜索关键字:find grep xargs    ( 34906个结果
数组对象去重
数组对象去重 准备数据 var arr = [{ "CompanySerial": "123", "id": "1", "number": 2, }, { "CompanySerial": "456", "id": "1", "number": 2 }, { "CompanySerial": "78 ...
分类:编程语言   时间:2020-07-26 23:23:50    阅读次数:116
lvs-dr实现mysql负载均衡集群
lvs-dr实现mysql负载均衡集群 环境说明: 服务器的操作系统均为centos7,vip和rip在同一网段,使用lvs-dr模型来实现mysql集群服务 所有服务器均已配置好处VIP外的静态IP 两台mysql服务器的主机名分别是node1和node2,且已安装并启动好mysql 1. DR上 ...
分类:数据库   时间:2020-07-26 19:51:24    阅读次数:111
2020-07-26
329. 矩阵中的最长递增路径 题解: 记忆化搜索,dp[i][j]代表以(i,j)结点为起点的最长递增路径。记忆化搜索即可。 class Solution { public: int dp[1000][1000]; int dir[4][2] = {1,0,0,1,-1,0,0,-1}; int ...
分类:其他好文   时间:2020-07-26 19:38:53    阅读次数:78
Ubuntu安装Nginx
一,安装: sudo apt-get install nginx /usr/sbin/目录下是nginx命令所在目录, /etc/nginx/目录下是nginx所有的配置文件,用于配置nginx服务器以及负载均衡等信息 二,查看Nginx进程是否启动: ps -ef|grep nginx 三,启动N ...
分类:系统相关   时间:2020-07-26 19:22:03    阅读次数:81
文件查找和打包压缩练习题
1、查找/var目录下属主为root,且属组为mail的所有文件find/var/-userroot-a-groupmail-ls2、查找/var目录下不属于root、lp、gdm的所有文件find/var/!(-userroot-o-userlp-o-usergdm)-ls或find/var/!-userroot-a!-userlp-a!-usergdm-ls3、查找/var目录下近一周内其内容
分类:其他好文   时间:2020-07-26 16:05:16    阅读次数:97
0154. Find Minimum in Rotated Sorted Array II (H)
Find Minimum in Rotated Sorted Array II (H) 题目 Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [ ...
分类:其他好文   时间:2020-07-26 15:29:37    阅读次数:58
springboot:创建工程,SunCertPathBuilderException: unable to find valid certification path to requested target
一开始以为是外国网站访问不了,后来就换成了https://start.aliyun.com/ ,但还是报这个错误。后来想想这个问题之前解决,应该是JDK版本的问题。JAVA_HOME配置的JDK11,后来给改成了JDK8,然后就出现了这个问题。 还原之后问题消失了。 ...
分类:编程语言   时间:2020-07-26 15:23:25    阅读次数:145
2020-07-25 Linux 8开始学习(第四课)
z gzip .tar.gzj bzip2 .tar.bz2 tar czvf back.tar.gz /etc 压缩tar xzvf back.tar.gz /etc 解压缩tar xzvf back.tar.gz -C /root/etc 压缩到指定目录 grep oo anaconda-ks. ...
分类:系统相关   时间:2020-07-26 02:03:19    阅读次数:110
Shellcode的编写
做病毒和做保护的人,对shellcode一定不陌生。shellcode不依赖环境,放到任何地方都可以执行的机器码。 shellcode编写注意事项: 1.不能有全局变量:因为shellcode不依赖环境 2.不能使用常量字符串: 首先先定义两个相同含义的字符串 在编写shellcode字符串的过程中 ...
分类:系统相关   时间:2020-07-26 02:00:28    阅读次数:89
Some features we need to keep in mind about the implementation of QuickSort algorithm
In this note,you will not find the concept of QS and the method of how to compute the cost of time and space of this algorithm。This page will not refe ...
分类:其他好文   时间:2020-07-26 01:23:01    阅读次数:76
34906条   上一页 1 ... 66 67 68 69 70 ... 3491 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!