1. min/max heap 看到K神马的基本上就是min/max heap. (1) Find the K closest points to the origin in a 2D plane, given an array containing N points. 1 public stati ...
分类:
其他好文 时间:
2016-10-01 14:54:26
阅读次数:
200
什么动作,关键看你想完成什么 1. 添加新的远程分支: git push origin current_local_branch:new_remote_branch 2. 删除远程分支(冒号前必须要有空格) git push origin :remote_branch 3. 切换到远程分支(只作临时 ...
分类:
其他好文 时间:
2016-09-29 01:15:12
阅读次数:
166
1 查看远程分支 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 $ git branch -a * br-2.1.2.2 master remotes/origin/HEAD -> origin/master remotes/origin/br-2.1.2.1 remote ...
分类:
其他好文 时间:
2016-09-28 22:49:31
阅读次数:
237
查看远程分支 加上-a参数可以查看远程分支,远程分支会用红色表示出来(如果你开了颜色支持的话): $ git branch -a master remote tungway v1.52 * zrong remotes/origin/master remotes/origin/tungway remo ...
分类:
其他好文 时间:
2016-09-28 22:43:26
阅读次数:
211
可以试着删除 index.lock 使用命令 rm -f ./.git/index.lock 本地的推送到远程 git push origin local_branch:remote_branch 这个操作,local_branch必须为你本地存在的分支,remote_branch为远程分支,如果r ...
分类:
其他好文 时间:
2016-09-28 15:35:17
阅读次数:
162
转自: http://www.cnblogs.com/zuoca/archive/2012/07/09/Remote_Development_With_Netbeans_origin.html 实践难度:★★☆☆☆ 实用性 :★★★★☆ 你还在采用纯手工开发吗? 你还在采用本地开发,ftp到远程主机 ...
分类:
Web程序 时间:
2016-09-28 12:32:38
阅读次数:
290
// 指定允许其他域名访问 header('Access-Control-Allow-Origin:*'); // 响应类型 header('Access-Control-Allow-Methods:POST'); // 响应头设置 header('Access-Control-Allow-Head ...
分类:
其他好文 时间:
2016-09-27 17:49:16
阅读次数:
121
重要组件 SteamVR_Camera VR摄像机,主要功能是将Unity摄像机的画面进行变化,形成Vive中的成像画面 使用方法: l 在任一个摄像机上增加脚本 l 点击Expand按钮 完成以上操作后,原本的摄像机会变成如下结构 l Origin:位置 l Head:头部 l Eye:眼睛 l ...
分类:
其他好文 时间:
2016-09-26 14:47:14
阅读次数:
488
A. 新建Git仓库,创建新文件夹git init B. 添加文件到git索引git add <filename> 单个文件添加git add * 全部文件添加C. 提交到本地仓库git commit -m "代码提交描述"D. 提交到远端仓库git push origin master***mas ...
分类:
其他好文 时间:
2016-09-26 09:36:01
阅读次数:
157
git checkout -b newlocal origin/q01v31source build/envsetup.shlunch msm8916_32-usermake -j4 make -j4 2>&1 | tee build.txt android编译命令的话,把/usr/lib/jvm/ ...
分类:
系统相关 时间:
2016-09-23 21:10:54
阅读次数:
264