码迷,mamicode.com
首页 >  
搜索关键字:cat head tail nl    ( 59491个结果
centos6.5解决方案-1
因为之前的版本python连带yum玩坏啦修不好,就重新安装了个cento6.5,顺便开始记下关于centos管理的种种。安装windows用ultro,linux用cat/dd 把dvd-iso1写到U盘上就可以(不需要删除pakcages和粘贴ios1,2),然后用U盘启动安装即可。iso1,2...
分类:其他好文   时间:2014-05-19 07:39:59    阅读次数:325
leetcode:3sum closet
题目:给一个数组和给定的目标值,要求在数组里找出三个元素,这三个元素的和最接近目标值,当然等于是最好的。 用3sum的方法,把判定条件作些修改。 int twoSum(vector &num, int start, int target) { if(num.size() = num.size()) return -target; int head = start; int t...
分类:其他好文   时间:2014-05-18 10:49:12    阅读次数:217
LeetCode: Swap Nodes in Pairs [023]
【题目】 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. You may not modify the values in the list, only nodes it...
分类:其他好文   时间:2014-05-18 08:37:57    阅读次数:370
两个有序链表合并
好多人都是为了找实习、找工作,看看思路,手写下这个问题的代码。如果有机会还是最好真正调试一下,还是有很多细节需要注意的。不多说了,代码记录如下: Node* Merge(Node *h1,Node *h2) { Node *head,*pCurrent,*head1,*head2; head1 = h1; head2 = h2; if(head1==NULL) retu...
分类:其他好文   时间:2014-05-18 02:59:29    阅读次数:214
JS 引用
var arr1=[1,2,3,4];var arr2=arr1;arr2.push(5);console.log(arr1);//和arr2一样console.log(arr1==arr2);//trueconsole.log(arr1===arr2);//truefunction Cat(nam...
分类:Web程序   时间:2014-05-18 00:19:28    阅读次数:275
mac配置git mergetool为p4merge(2013笔记整理)
既有环境:1)下载安装p4merge2)安装git下面是配置p4merge为git mergetool的步骤1. /usr/local/bin下创建extMerge文件:$ cat >> /usr/local/extMerge#!/bin/sh/Applications/IDE/p4merge.ap...
分类:其他好文   时间:2014-05-17 21:41:46    阅读次数:354
每天一个linux命令(2): nl命令
0.学习时间 2014-05-161.命令格式 nl [参数] 文件名 (文件名也缺省的情况下, 从标准输入中读入)2.命令参数 -b t 空行不加行号(默认) -b a 空行也加行号(类似于cat -n) -n ln 设置行号显示左对齐 -n rn 设置行号显示右对齐(默认) ...
分类:系统相关   时间:2014-05-17 20:51:26    阅读次数:299
firebug的调试,console
console.log()console.warn() 警告console.error() 错误console.group() 分组 console.grounpEnd() 分组结束console.dir() 输出所有信息var cat = {};cat.name = "mm";cat.sex .....
分类:其他好文   时间:2014-05-17 19:41:31    阅读次数:370
链表的整表的创建
/这里是链表的创建其包含的是头指针phead,头节点,以及尾节点p->next = NULL 为链表创建结束标志。/判断指针为空十分重要,当然也不能忘了释放,代码是:if(head !=NULL){free(head);head = NULL;}head = (SLNode*)malloc(size...
分类:其他好文   时间:2014-05-17 19:40:54    阅读次数:255
JS刷新窗口的几种方式
浮层内嵌iframe及frame集合窗口,刷新父页面的多种方法 弹出子页面 子窗口刷新父窗口 刷新以open()方法打开的窗口 刷新以winodw.showModelDialog()方法打开的窗口Javascript代码方法二 : 在Head中添加 在body中添加 在底部脚本中: reloa...
分类:Web程序   时间:2014-05-17 18:53:28    阅读次数:298
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!