码迷,mamicode.com
首页 >  
搜索关键字:cp mv cat head    ( 57883个结果
cp命令
该命令的功能是将给出的文件或目录拷贝到另一文件或目录中,就如同DOS下的copy命令一样,功能非常强大。语法: cp [选项] 源文件或目录 目标文件或目录说明:该命令把指定的源文件复制到目标文件或把多个源文件复制到目标目录中。该命令的各选项含义如下:- a 该选项通常在拷贝目录时使用。它保留链接、...
分类:其他好文   时间:2014-05-12 12:01:24    阅读次数:213
阿里云64位centos6.3系统上编译安装redis
环境系统:阿里云64位centos 6.3[rao@AY~]$ cat /etc/issueCentOS release 6.3 (Final)Kernel \r on an \m[rao@AY~]$ uname -aLinux AY1404062027584053a1Z 2.6.32-358.6....
分类:其他好文   时间:2014-05-12 09:27:33    阅读次数:510
Bootstrap_02_流动网格布局
<!doctypehtml> <html> <head> <title>益司CMS-PC与手机建站集成</title> <metaname="viewport"content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"> <linkhref="__PUBLIC__/bootstrap/css/bootstrap...
分类:其他好文   时间:2014-05-12 03:54:09    阅读次数:253
Bootstrap_01_网格布局
<!doctypehtml> <html> <head> <title>益司CMS-PC与手机建站集成</title> <metaname="viewport"content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"> <linkhref="__PUBLIC__/bootstrap/css/bootstrap...
分类:其他好文   时间:2014-05-12 03:13:07    阅读次数:236
【LeetCode】Insertion Sort List
Sort a linked list using insertion sort.//用到O(N)的额外空间public class Solution { public ListNode insertionSortList(ListNode head) { if(head==nul...
分类:其他好文   时间:2014-05-11 23:59:09    阅读次数:405
ZOJ 2109 FatMouse' Trade (背包 dp + 贪心)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1109 FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the warehouse containing his favorite food, JavaBean...
分类:其他好文   时间:2014-05-11 20:57:36    阅读次数:400
bootstrap_04_列表
<!doctypehtml> <html> <metacharset="utf-8"/> <head> <title>益司CMS-PC与手机建站集成</title> <metaname="viewport"content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"> <linkrel="stylesh..
分类:其他好文   时间:2014-05-11 19:37:34    阅读次数:338
W?o?r?d?P?r?e?s?s?常?用?标?签?和?调?用?总?结
调用头部模板调用尾部模板调用侧边栏放在head标签内,方便插件调用:放在footer里,body结束之前,方便插件调用:----------------------------------------------------------头部编码调用:" />头部css调用:" rel="styles...
分类:其他好文   时间:2014-05-11 16:29:23    阅读次数:402
数据结构与算法-链表的基本操作---ShinPans
//链表操作:建立、插入、删除、查找、倒置、删除等基本操作 #include #include typedef  struct LNode {       int data;       structLNode *next; }LNode,*Llist; LNode *creat_head();//创建一个空表 void creat_list(LNode *,int);//创...
分类:其他好文   时间:2014-05-11 03:33:11    阅读次数:351
LeetCode Insertion Sort List
class Solution {public: ListNode *insertionSortList(ListNode *head) { if (head == NULL) return NULL; ListNode* sorted_head = head; ...
分类:其他好文   时间:2014-05-10 20:39:14    阅读次数:419
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!