码迷,mamicode.com
首页 >  
搜索关键字:diff    ( 2433个结果
Unity做360度的全景照片
这里推荐两种方法,第一种是用鼠标滑动,第二种是用手机的陀螺仪进行全景查看 第一种: 1、新建一Sphere,然后为其赋予材质,注意材质的Shader类型为:Mobile/particles/Alpha Blended,然后将做好的全景图贴上去 2、在摄像机上附加以下脚本:代码来源参考自 3、然后在游 ...
分类:编程语言   时间:2018-09-23 13:28:51    阅读次数:172
git difftool和mergetool图形化
1.当然是先安装Beyond Compare3 (此处省略安装步骤,自行百度) 2.设置difftool git config --global diff.tool bc3 git config --global difftool.bc3.path "/usr/bin/bcompare git co ...
分类:其他好文   时间:2018-09-23 11:49:55    阅读次数:174
hihocoder 1828 Saving Tang Monk II (DP+BFS)
题目链接 Problem Description 《Journey to the West》(also 《Monkey》) is one of the Four Great Classical Novels of Chinese literature. It was written by Wu Ch ...
分类:其他好文   时间:2018-09-22 23:23:13    阅读次数:251
[LeetCode] 89. Gray Code 格雷码
The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total num ...
分类:其他好文   时间:2018-09-20 11:08:46    阅读次数:177
POJ - 1942 D - Paths on a Grid
Imagine you are attending your math lesson at school. Once again, you are bored because your teacher tells things that you already mastered years ago ...
分类:其他好文   时间:2018-09-19 19:57:39    阅读次数:159
momentjs在vue中的用法
js代码 import moment from 'moment'; const jsCountDown = document.getElementById('js-countdown'); const targetTime = new Date('2018-10-4'); const countdo ...
分类:Web程序   时间:2018-09-19 18:04:04    阅读次数:1333
集合set 的知识点
差集: 对称差集 删除元素的操作 pop remove 根据值来删除 但是remove删除若是若是删除的值是不存在集合中的话,会报错。这是就是使用discard 添加值的方法 add isdisjoint 方法 总结 存在多个值 无序 set可变 ...
分类:其他好文   时间:2018-09-18 19:55:18    阅读次数:164
集合(set)
set集合set集合是python的一个基本数据类型. 一般不是很常用. set中的元素是不重复的.无序的.里面的元素必须是可hash的(int, str, tuple,bool), 我们可以这样来记. set就是dict类型的数据但是不保存value, 只保存key. set也用{}表示注意: s ...
分类:其他好文   时间:2018-09-18 19:12:05    阅读次数:139
python 集合方法
set方法 intersection方法 union方法 difference方法 issubset方法 issupperset方法 symmetric_difference方法 isdisjoint方法 简写方式 add方法 update方法 remove方法 ...
分类:编程语言   时间:2018-09-18 11:21:23    阅读次数:146
平衡二叉树判断方法简介
判断该树是不是平衡的二叉树。如果某二叉树中任意结点的左右子树的深度相差不超过1,那么它就是一棵平衡二叉树。方法一:先序遍历 1.计算节点深度 2.递归判断是否平衡 上面的“先序遍历”判断二叉树平衡的方法,时间复杂度比较大。因为,二叉树中的很多结点遍历了多次。 方法二:后序遍历 ...
分类:其他好文   时间:2018-09-18 00:34:28    阅读次数:150
2433条   上一页 1 ... 77 78 79 80 81 ... 244 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!