One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we record the node's value. If it is a null node, ...
分类:
其他好文 时间:
2016-11-25 06:56:48
阅读次数:
158
提示:任何版本的都可以按以下方法尝试。版本2.8.0的本人已验证,已注册。 1,打开对应 mac版本的安装包位置,在对应目录/Applications/StarUML.app/Contents/www/license/node/LicenseManagerDomain.js文件。 2,找到文件23行 ...
分类:
其他好文 时间:
2016-11-24 16:05:16
阅读次数:
287
Ctrl + X 删除所选内容或者删除光标所在行。 Ctrl + D 复制所选内容到下一行,或者复制光标所所在行到下行。 Ctrl + E 最近更改的代码。 Ctrl + F 查找文本。 Ctrl + / 注释光标选中的几行。格式(<!-- -->) Ctrl + N 查找类(class)。 Ctr ...
分类:
其他好文 时间:
2016-11-24 08:39:30
阅读次数:
146
By francis_haoNov 21,2016 从版本库初始化开始,每一步的撤销操作 添加第一个文件 在空的版本库中创建了一个文件并git add到了缓存区,这时候怎么撤销呢? 撤销单个文件和整个目录 $ git rm --cached a$ git rm --cached . -r 首次com... ...
分类:
其他好文 时间:
2016-11-23 06:28:19
阅读次数:
195
直接上代码: ///////查看执行文件的路径下面是否有db文件夹,若没有则新建///////// CFileFind cff; if (cff.FindFile(_T("db")) == 0) //当前路径,没找到db文件夹 { CString strText; TCHAR exepath[MAX ...
分类:
编程语言 时间:
2016-11-22 22:28:43
阅读次数:
215
Given an array of integers, every element appears twice except for one. Find that single one. 本题利用XOR的特性, X^0 = X, X^X = 0, 并且XOR满足交换律。 single number ...
分类:
其他好文 时间:
2016-11-21 08:48:01
阅读次数:
164
#344. Reverse String Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". 题解:回文串 ...
分类:
其他好文 时间:
2016-11-21 08:26:57
阅读次数:
109
前提条件:如果发生了没有注册redhat账号造成没有权限使用yum的情况下,可以参考:http://www.cnblogs.com/boshen-hzb/p/6080431.html 1、cd /etc/yum.repos.d/ 在里面新建文件nginx.repo 注意,上面的baseurl要检测是 ...
分类:
其他好文 时间:
2016-11-19 16:08:50
阅读次数:
195
"Hey, Dad, welcome home." hey爸爸,欢迎回家。 "Thanks." He hung up his gun belt and stepped out of his boots as I bustled about the kitchen. As far as I was a ...
分类:
其他好文 时间:
2016-11-18 18:26:45
阅读次数:
205