首页 > 2015年09月14日 > 全部分享
[LeetCode]Symmetric Tree
Symmetric TreeGiven a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric...
分类:其他   时间:2015-09-14 01:51:20    收藏:0  评论:0  赞:0  阅读:237
Ogre2.0 全新功能打造新3D引擎
不知当初是在那看到,说是Ogre2.0浪费了一个版本号,当时也没多想,以为没多大更新,一直到现在想做一个编辑器时,忽然想到要看下最新版本的更新,不看不知道,一看吓一跳,所以说,网络上的话少信,你不认识别人,别人张嘴就来,对别人也没损失,还可以装B下,靠. 从现在Ogre2.1的代码来看,大约总...
分类:其他   时间:2015-09-14 01:51:00    收藏:0  评论:0  赞:0  阅读:397
Java加解密与签名
加密、数字签名基本概念:加密:密码常用术语: 明文,密文,加密,加密算法,加密秘钥,解密,解密算法,解密秘钥,密码分析:分析密文从而推断出明文或秘钥的过程主动攻击:入侵密码系统,采用伪造,修改,删除等手段向系统注入假消息进行欺骗。(对密文有破坏作用)被动攻击:对一个保密系统采取截获密文并对其进行分析...
分类:编程语言   时间:2015-09-14 01:50:50    收藏:0  评论:0  赞:0  阅读:399
The op amp module
分类:其他   时间:2015-09-14 01:50:40    收藏:0  评论:0  赞:0  阅读:213
HDU 5439 Aggregated Counting
题目大意:由1开始不断往数组中添加数就是按照当前所在位置所在的数表示的个数添加这个数目的数1 2 2 3 3 后面因为要填4,而4号位置为3,说明之后要填3个4问题就是给定一个n,找到n出现的最后位置p,再找p出现的最后位置即可这里可以考虑先找到g[i]表示 i 连续出现了多少次这里想一下的话,因为...
分类:其他   时间:2015-09-14 01:50:30    收藏:0  评论:0  赞:0  阅读:843
The Secret Mixed-Signal Life of PWM Peripherals
The Secret Mixed-Signal Life of PWM PeripheralsPulse-width modulation (PWM) peripherals have enjoyed a long association with microcontrollers and powe...
分类:其他   时间:2015-09-14 01:50:20    收藏:0  评论:0  赞:0  阅读:221
BZOJ1712 : [Usaco2007 China]Summing Sums 加密
设$s[i]$为进行$i$次加密后所有奶牛数字的和,有$s[i]=(n-1)s[i-1]$。设$c[i]$为某头固定的奶牛进行$i$次加密后的数字,若$i$为奇数,有:\[c[i]=((1-n)^0+(1-n)^1+...+(1-n)^{T-1})s-c[0]=\frac{(1-(1-n)^T)s}...
分类:其他   时间:2015-09-14 01:50:10    收藏:0  评论:0  赞:0  阅读:152
水仙花数
根据题目要求,只需将水仙花数列出来进行判断即可
分类:其他   时间:2015-09-14 01:50:00    收藏:0  评论:0  赞:0  阅读:345
how to generate an analog output from a in-built pwm of Atmega 32AVR microcontrloller?
how to generate an analog output from a in-built pwm of Atmega 32AVR microcontrloller?you need a resistor, a capacitor and an opamp.opamp is not reall...
分类:其他   时间:2015-09-14 01:49:50    收藏:0  评论:0  赞:0  阅读:1068
HTML5新增常用属性
一、 代码名称语义化的好处1、能让搜索引擎更好的收录2、对于特殊设备如盲人设备好解析二、article和section的区别article(文章):独立且能被外部引用section(章节、段落):不独立,不能被外部引用三、 css3常用的新增属性可以下拉的输入框datalist 2、图片加载fig....
分类:Web开发   时间:2015-09-14 01:49:40    收藏:0  评论:0  赞:0  阅读:285
js的兼容性问题
//window.event IE:有window.event对象 FF:没有window.event对象。可以通过给函数的参数传递event对象。如onmousemove=doMouseMove(event)解决方法:var event = event || window.event; exa.....
分类:Web开发   时间:2015-09-14 01:49:32    收藏:0  评论:0  赞:0  阅读:187
MyBatis学习笔记(一)
测试Demo的目录结构:com.luohao.config ->MyBatisCongfig.xml ->userMapper.xmlcom.luohao.Test ->TestMyBatis.class ->User.class测试数据库是MySQL,用的数据库连接是JDB...
分类:其他   时间:2015-09-14 01:49:20    收藏:0  评论:0  赞:0  阅读:320
缓存的使用
关于缓存的方法即用法介绍,命名空间:System.Web.Caching。第一、 Cache中的Add方法:参数:Cache.Add(string key,//Cache中的键 Object value,//Cache中的值 CacheDependency dependencies,//依赖的项,可...
分类:其他   时间:2015-09-14 01:49:10    收藏:0  评论:0  赞:0  阅读:207
Page Scroll using Selenium WebDriver
Using JavaScriptScroll Down:import org.openqa.selenium.JavascriptExecutor;WebDriver driver = new FirefoxDriver();JavascriptExecutor jse = (JavascriptE...
分类:Web开发   时间:2015-09-14 01:49:00    收藏:0  评论:0  赞:0  阅读:210
SSMS For Beginner Part 18 to 21
Part 18 Stored procedures in sql serverPart 19 Stored procedures with output parametersPart 20 Stored procedure output parameters or return valuesPart...
分类:其他   时间:2015-09-14 01:48:50    收藏:0  评论:0  赞:0  阅读:308
android 跑马灯
跑马灯效果 layout布局代码 android:marqueeRepeatLimit=”marquee_forever” android:focuseableTouchMode=”true” android:singleLine="true" ...
分类:移动平台   时间:2015-09-14 01:48:40    收藏:0  评论:0  赞:0  阅读:195
Simple PWM to Analog Circuit (0-10vdc)
i just finished this simple circuit and am very satisfied with the result. The output is very stable and extremely linear!just though id share as i di...
分类:其他   时间:2015-09-14 01:48:30    收藏:0  评论:0  赞:0  阅读:311
jq 判断多个 checkbox 选中
效果如下: html 代码: 1 菜单: 2 3 大盘鸡 4 红烧肉 5 清蒸鱼 6 大闸蟹 7 笨鸡蛋 8 白开水 9 10 11 Jq 代码: 1 ...
分类:其他   时间:2015-09-14 01:48:20    收藏:0  评论:0  赞:0  阅读:326
[LeetCode#281] Zigzag Iterator
Problem:Given two 1d vectors, implement an iterator to return their elements alternately.For example, given two 1d vectors:v1 = [1, 2]v2 = [3, 4, 5, 6...
分类:其他   时间:2015-09-14 01:48:11    收藏:0  评论:0  赞:0  阅读:943
关于心态
写在这里并不是什么lol教程,而是在游戏中得到的一点收获。总是会在游戏中遇到各种前期小劣势就开始放弃的队友,各种骂人,甚至开始送人头,不好好玩耍,其实有时候,队友太菜没意识,很上火的时候,我也会骂,骂他是为了他能长点脑子好好继续游戏,并不是为了单纯的攻击别人的智商来骂人。但是更多令我印象深刻的例子是...
分类:其他   时间:2015-09-14 01:48:00    收藏:0  评论:0  赞:0  阅读:244
1372条   上一页 1 ... 60 61 62 63 64 ... 69 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!