1.首先卸载自带的ibus输入法sudo apt-get remove ibus卸载完成后安装fcitx输入法管理器2.添加PPA源sudo add-apt-repository ppa:fcitx-team/nightlysudo apt-get update3.安装管理器和输入法sudo apt...
分类:
其他好文 时间:
2014-09-18 13:15:43
阅读次数:
228
[leetcode]Remove Duplicates from Sorted Array II...
分类:
其他好文 时间:
2014-09-18 11:30:53
阅读次数:
150
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.For example,Given 1->2-...
分类:
其他好文 时间:
2014-09-18 05:24:13
阅读次数:
195
1. 有时候程序需要生成一些临时目录和临时文件,在程序退出时需要删除,这时候用win32的api即可完成需求,自己遍历目录一个个removefile并不是高效率的做法.
//注意:
//1.要删除的目录不能以\\结尾.只能以目录名结尾,比如C:\\New Folder,而不是C:\\New Folder\\,不然会失败.
//2.pFrom的值必须是以\0结尾的字符串,unicode字符串要以两个\0\0结尾.
//3.可以使用std::string或std::wstring的c_str(),因为这个函数返...
[leetcode]Remove Duplicates from Sorted Array...
分类:
其他好文 时间:
2014-09-17 21:54:52
阅读次数:
199
[leetcode]Remove Element...
分类:
其他好文 时间:
2014-09-17 21:54:42
阅读次数:
196
## CRUD create,read, update,delete ## Operations db.collection.count() db.collection.distinct() db.collection.findOne() db.collection.remove() db.collection.save() db.collection.update() ##Cursor...
分类:
其他好文 时间:
2014-09-17 15:40:22
阅读次数:
155
yum -y install 包名(支持*) :自动选择y,全自动yum install 包名(支持*) :手动选择y or nyum remove 包名(不支持*)rpm -ivh 包名(支持*):安装rpm包rpm -e 包名(不支持*):卸载rpm包yum remove 会检查依赖,如果你要移...
分类:
其他好文 时间:
2014-09-17 13:24:42
阅读次数:
212
Map是键值对集合,是一对一对往上存的,要保持键的唯一性形式:Map方法:增put(K key, V value)若存储时Map中有相同的键,则返回原来键的值,并覆盖原来的值,否则返回空,putAll(Map m)删clear()remove(Object key)判断containsValue(O...
分类:
其他好文 时间:
2014-09-16 18:40:20
阅读次数:
199
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2014-09-16 14:13:50
阅读次数:
133