码迷,mamicode.com
首页 >  
搜索关键字:linux 文件查找 find    ( 177110个结果
Ubuntu启动到字符终端模式
方法1,使用tengcy的方法,永远启动到字符终端模式要修改"/etc/init/gdm.conf"将第13行:"stop on runlevel [016]"修改为:"stop on runlevel [0126]"这样就永远启动到字符终端模式,如果想用Xwindow,则在登录后,使用startx...
分类:其他好文   时间:2014-07-22 23:16:34    阅读次数:656
oracle 与sql serve 获取随机行数的数据
Oracle 随机获取N条数据 当我们获取数据时,可能会有这样的需求,即每次从表中获取数据时,是随机获取一定的记录,而不是每次都获取一样的数据,这时我们可以采取Oracle内部一些函数,来达到这样的目的1) select * from (select * from tablename order b...
分类:数据库   时间:2014-07-22 23:16:15    阅读次数:434
[Leetcode] Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他好文   时间:2014-07-22 23:16:14    阅读次数:408
Linux进程的实际用户ID和有效用户ID
在Unix进程中涉及多个用户ID和用户组ID,包括如下:1、实际用户ID和实际用户组ID:标识我是谁。也就是登录用户的uid和gid,比如我的Linux以simon登录,在Linux运行的所有的命令的实际用户ID都是simon的uid,实际用户组ID都是simon的gid(可以用id命令查看)。2....
分类:系统相关   时间:2014-07-22 23:15:52    阅读次数:493
Hadoop single Node cluster
目的:本文描述怎么安装和配置一个单结点的Hadoop,以便搭建能快速简单操作和使用Hadoop的MapReduce和Hadoop的分布式文件系统(HDFS);先决条件:支持的平台GNU/Linux 可用作开发和生产平台. Hadoop 在GNU/Linux clusters with 2000 no...
分类:其他好文   时间:2014-07-22 23:14:55    阅读次数:435
linux命令
1、文件目录操作 pwd:显示当前目录 cd:目录跳转 ls:-a—全部;-l—列举目录;-F--文件类型;-r--逆向(从后向前);-R--递归;-S--大小 locate:查找文件或目录 clear:清除终端窗口 cat:显示文件内容 head:查看文件开头部分 ...
分类:系统相关   时间:2014-07-22 23:14:53    阅读次数:708
【HDOJ】3560 Graph’s Cycle Component
并查集的路径压缩。 1 #include 2 #include 3 4 #define MAXNUM 100005 5 6 int deg[MAXNUM], bin[MAXNUM]; 7 char isCycle[MAXNUM]; 8 9 int find(int x) {10 i...
分类:其他好文   时间:2014-04-29 17:22:46    阅读次数:308
six solutions to a single symmetrical problem
Problem description:given a string, find the longest palindrome string in itSolution:1.brute force O(n^3)just enumerate start and end of the substring...
分类:其他好文   时间:2014-04-29 17:22:46    阅读次数:308
LINUX 双网卡绑定
cd /etc/sysconfig/network-scriptscp ifcfg-eth0 bak.ifcfg-eth0cp ifcfg-eth1 bak.ifcfg-eth1vi ifcfg-bond0DEVICE=bond0BROADCAST=192.168.8.255IPADDR=192.1...
分类:系统相关   时间:2014-04-29 17:17:47    阅读次数:639
VC6微软正则表达式greta使用案例
#include#include"regexpr2.h"usingnamespacestd;usingnamespaceregex;//greta库的命名空间//若链接出错,设置MFC静态链接//查找匹配串//返回结果匹配串(CStringArray数组指针类型)CStringArray*Find(...
分类:其他好文   时间:2014-04-29 17:15:48    阅读次数:363
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!