码迷,mamicode.com
首页 >  
搜索关键字:not find    ( 24186个结果
apache实现动态二级域名
apache实现动态子域名,abc.zblog.com,则访问/data/www/default/zblog/abc 1.查找httpd.conf所在的位置 root@instance-baidu:/usr/local/apache/conf# sudo find / -name httpd.con ...
分类:Web程序   时间:2020-03-15 11:19:06    阅读次数:58
软工项目WordCount
1.Github项目地址:https://github.com/JameMo/WordCount-for-C 2.在程序的各个模块的开发上耗费的时间: PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 10 8 ...
分类:其他好文   时间:2020-03-15 10:11:38    阅读次数:51
Hash 板子
1 //拉链法 2 int h[N], e[N], ne[N], idx; 3 4 // 向哈希表中插入一个数 5 void insert(int x) 6 { 7 int k = (x % N + N) % N; 8 e[idx] = x; 9 ne[idx] = h[k]; 10 h[k] = ...
分类:其他好文   时间:2020-03-15 09:54:43    阅读次数:53
Selenium中WebDriver API的使用(三)
WebDriver API中常用的方法和属性 方法: clear() >清除一个文本输入框 p:driver.find_element_by_id("kw").clear() send_keys() -->来输入字符串 p:driver.find_element_by_id("kw").send_k ...
分类:Windows程序   时间:2020-03-15 00:07:15    阅读次数:86
UCF Local Programming Contest 2015
链接:https://www.jisuanke.com/contest/7330?view=challenges A Find the Twins 题意:给一串数字看这对兄弟是否在其中。 需注意行末空格换行的格式问题 代码如下: 1 #include <iostream> 2 #include <c ...
分类:其他好文   时间:2020-03-14 22:10:33    阅读次数:105
leetcode162 Find Peak Element
1 """ 2 A peak element is an element that is greater than its neighbors. 3 Given an input array nums, where nums[i] ≠ nums[i+1], find a peak element a ...
分类:其他好文   时间:2020-03-14 21:47:44    阅读次数:51
ESXi 6.7 手动克隆vm主机
ESXi 6.7 手动克隆vm主机 1、开启ESXi 物理主机的ssh登陆 2、find / -name vm01/vmfs/volumes/5e6d0534-d9d952a0-ec48-1c872cd046c9cd /vmfs/volumes/5e6d0534-d9d952a0-ec48-1c87 ...
分类:其他好文   时间:2020-03-14 20:20:07    阅读次数:264
selenium-2:导航及页面交互
2,导航与页面交互 启动关闭浏览器 关闭浏览器有两种方式: close方法 quit方法 close方法关闭当前的浏览器窗口,quit方法不仅关闭窗口,还会彻底的退出webdriver,释放与driver server之间的连接 获取网页源码 一些方法 导航 通过调用get 方法,导航到一个url ...
分类:其他好文   时间:2020-03-14 20:02:05    阅读次数:53
第k大的数
排序的方法就不说了 这里记录一下o(n)复杂度的算法 思想,利用快速排序的划分思想,每一次划分会有一个元素处于最终位置 判断这个位置,若所处位置大于k,则向左边寻找 若所处位置大于k,向右边寻找。 int find_K(int a[],int left, int right,int K) { if( ...
分类:其他好文   时间:2020-03-14 19:48:41    阅读次数:38
Linux find命令使用正则表达式
如果想要在find命令中使用正则表达式,需要指定正则表达式类型 regextype type Changes the regular expression syntax understood by regex and iregex tests which occur later on the com ...
分类:系统相关   时间:2020-03-14 18:22:58    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!