码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
[Leetcode] First Missing Positive
Questions:Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm...
分类:其他好文   时间:2014-06-13 13:16:42    阅读次数:205
centos里mysql无法用localhost连接的解决方法
遇到这个问题可能是由于我未安装在默认路径导致的解决方法:由于mysql 默认的mysql.sock 是在/var/lib/mysql/mysql.sock,但linux系统总是去/tmp/mysql.sock查找,所以会报错[root@localhost ~]# find / -name mysql...
分类:数据库   时间:2014-06-12 23:05:35    阅读次数:340
Failed to Attach to Process ID Xcode 解决办法
方法1.go to the Product menu and find the Edit Scheme menu there.While in Edit Scheme window, select the "Run" option on the left hand side of the scree...
分类:其他好文   时间:2014-06-12 21:03:42    阅读次数:317
[Leetcode] Best Time to Buy and Sell Stock III
Question: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 c...
分类:其他好文   时间:2014-06-12 19:55:05    阅读次数:292
[Leetcode] Interleaving String
Question:Givens1,s2,s3, find whethers3is formed by the interleaving ofs1ands2.For example,Given:s1="aabcc",s2="dbbca",Whens3="aadbbcbcac", return true...
分类:其他好文   时间:2014-06-12 19:06:19    阅读次数:195
Linux find 小练习
1.任务一查找/var目录下属主为root并且属组为mail的所有文件[root@localhost~]#find/var-userroot-a-groupmail /var/spool/mail /var/spool/mqueue [root@localhost~]#2.任务二查找/usr目录下不属于root,bin,或zhangfengzhe的文件[root@localhost~]#find/usrnot\(-userroot-o-..
分类:系统相关   时间:2014-06-10 23:37:02    阅读次数:387
妈妈再也不用担心我找不到文件了---find
1.findvslocate在实际中,我们经常需要查找到一些特定文件,然后进行处理,LINUX提供了locate,find这两个命令用于文件查找。a.locate,非实时查找,非精确查找。linux会定期生成更新文件数据库,而locate将根据文件数据库进行查找。我们可以在使用locate命令前,更新文件数据库..
分类:其他好文   时间:2014-06-10 23:31:05    阅读次数:286
oracle监控脚本
简单命令1.显示服务器上的可用实例:ps -ef | grep smon2.显示服务器上的可用监听器:ps -ef | grep -i listener | grep -v grep3.查看Oracle存档目录的文件系统使用情况:df -h4.统计alter.log文件中的行数:[root@rac0...
分类:数据库   时间:2014-06-10 19:29:41    阅读次数:427
[leetcode]Longest Common Prefix @ Python
原题地址:https://oj.leetcode.com/problems/longest-common-prefix/题意:Write a function to find the longest common prefix string amongst an array of strings.解...
分类:编程语言   时间:2014-06-10 16:31:52    阅读次数:261
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!