码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
leetcode--Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.public class Solution { public String longestCommonPrefix(Str...
分类:其他好文   时间:2014-06-25 17:03:03    阅读次数:331
Qt5 Cmake
project(my)cmake_minimum_required(VERSION 2.8.9)set (CMAKE_PREFIX_PATH "C:\\Qt\\Qt5.3.0\\5.3\\msvc2010_opengl")set(CMAKE_INCLUDE_CURRENT_DIR ON)find_p...
分类:其他好文   时间:2014-06-25 16:59:54    阅读次数:221
leetcode--3Sum Closest
Given an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum of the three integers. You m...
分类:其他好文   时间:2014-06-25 15:26:21    阅读次数:203
[LeetCode] Median of Two Sorted Arrays
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be ...
分类:其他好文   时间:2014-06-25 14:58:16    阅读次数:210
javascript判断设备类型-手机(mobile)、安卓(android)、电脑(pc)、其他(ipad/iPod/Windows)等
使用device.js检测设备并实现不同设备展示不同网页html代码: 引入device.js(function() { var previousDevice, _addClass, _doc_element, _find, _handleOrientation, _hasClass...
分类:移动开发   时间:2014-06-25 14:07:19    阅读次数:275
jquery find()和filter()的区别
在写js查找当前标签下某一子元素的子元素集合时,用到了此方法1 $(".flyout-trigger").mouseover(function(){2 var maxnum=$(this).find(".flyout-link").children().filter("dt").size();...
分类:Web程序   时间:2014-06-25 13:42:25    阅读次数:222
Leetcode Best Time to Buy and Sell Stock II
Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
分类:其他好文   时间:2014-06-25 12:59:40    阅读次数:202
DNS服务器之一:主服务器正反解实现
环境:一台window客户端192.168.1.100虚拟机上两台centOS:主DNS192.168.1.103从DNS192.168.1.104主DNS服务器一、软件安装查找与bind有关的软件包[root@instructornamed]#yumlistall|grep"^bind" bind.i68632:9.8.2-0.23.rc1.el6_5.1 bind-libs.i68632:9.8.2-0.23.rc1.el6_5.1 ..
分类:其他好文   时间:2014-06-24 16:18:56    阅读次数:268
检查HP服务器内存状态脚本
检查HP服务器内存状态脚本脚本1(如有问题则发邮件通知):#vidisk.sh按a或i进入编辑模式#!/bin/bashName=`hostname`Date=`date+%m%d%y`Num=`dmidecode|grep-i‘serialnumber‘|head-n1`Mem=`/sbin/hpasmcli-s"showdimm"|grepStatus|awk-F[:""]+‘{print$2}‘‘`#echo$Diski=1;forOK..
分类:其他好文   时间:2014-06-24 16:11:12    阅读次数:293
Linux文本处理工具AWK使用解析
在linux系统上有三大文本处理工具分别是:grep,sed,awk,这次主要来看看awk。awkoption‘pattern‘file-F指定分隔符;-v申明自定义变量;查看当前系统上,用户名和用户shell,输出分隔符为~.#awk-F:‘BEGIN{OFS="~";print"UserNameShell"}{print$1,$7}END{print"==============..
分类:系统相关   时间:2014-06-24 16:09:14    阅读次数:397
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!