说明:由于图形化界面方法(如Add/Remove... 和Synaptic Package Manageer)比较简单,所以这里主要总结在终端通过命令行方式进行的软件包安装、卸载和删除的方法。一、Ubuntu中软件安装方法1、APT方式(1)普通安装:apt-get install softname...
分类:
系统相关 时间:
2014-11-27 14:17:39
阅读次数:
354
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the l...
分类:
其他好文 时间:
2014-11-27 09:14:31
阅读次数:
197
Remove Duplicates from Sorted List IIGiven a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the or...
分类:
其他好文 时间:
2014-11-26 20:34:57
阅读次数:
238
Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.
#include
#include
...
分类:
其他好文 时间:
2014-11-26 18:59:03
阅读次数:
155
看makefile:
#jingz's first file to test makeFile
allTarget:stdafx_target 11_12_target
g++ stdafx.o functor-adapter_p431.o -o functor-adapter_p431.exe
#remove the object files
rm -rf stdafx.o functor...
分类:
编程语言 时间:
2014-11-26 16:35:39
阅读次数:
211
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the...
分类:
其他好文 时间:
2014-11-26 11:26:18
阅读次数:
252
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with...
分类:
其他好文 时间:
2014-11-25 23:49:04
阅读次数:
241
1,as3 的几个时间操作setTimeOut:设置超时时间,只会执行一次! setInterval:设置一个间隔时间,间隔多久会触发一次!除非 remove,否则会永久执行下去! Timer:设置一个间隔时间,有次数限制,只执行制定次数! flash.utils.setTimeout(closur...
分类:
其他好文 时间:
2014-11-25 23:11:39
阅读次数:
161
1 rmdir 删除空目录。目录非空时报错。1 ROOT$ mkdir -p a/b/c/d2 ROOT$ rmdir a3 rmdir: failed to remove ‘a’: Directory not empty2 -p参数删除子目录。1 ROOT$ mkdir -p a/b/c/d/e/...
分类:
其他好文 时间:
2014-11-25 18:18:57
阅读次数:
132
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
#...
分类:
其他好文 时间:
2014-11-25 16:29:20
阅读次数:
256