码迷,mamicode.com
首页 > 2015年12月06日 > 全部分享
1062. Talent and Virtue (25)
About 900 years ago, a Chinese philosopher Sima Guang wrote a history book in which he talked about people's talent and virtue. According to his theor...
分类:其他好文   时间:2015-12-06 12:47:24    阅读次数:163
Android—实现自定义相机倒计时拍照
这篇博客为大家介绍Android自定义相机,并且实现倒计时拍照功能首先自定义拍照会用到SurfaceView控件显示照片的预览区域,以下是布局文件:两个TextView是用来显示提示信息和倒计时的秒数的 接下来是mainActivity中的具体实...
分类:移动开发   时间:2015-12-06 12:46:07    阅读次数:222
1064. Complete Binary Search Tree (30)
根据中序遍历建立完全二叉树。时间限制100 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueA Binary Search Tree (BST) is recursively defined as a binary tree which has t...
分类:其他好文   时间:2015-12-06 12:47:14    阅读次数:124
一种javascript链式多重继承的方式(__proto__原型链)
var a=function(){this.foo='bar';}a.prototype={b:1};var aa=function(){}aa.prototype={c:2,__proto__:a.prototype};var aaa=function(){}aaa.prototype={c:3,...
分类:编程语言   时间:2015-12-06 12:47:03    阅读次数:136
信息安全系统设计基础第十二周学习总结—20135227黄晓妍
第十二章 并发编程 操作系统提供了三种基本的构造并发程序的方法: 1、进程。每个逻辑控制流都是一个进程,由内核来调度和维护; 2、I/O多路复用。 3、线程。 一、基于进程的并发编程 在接受连接请求之后,服务器派生出一个子进程,这个子进程获得服务器描述表完整的拷贝。子进程关闭它的拷贝中监听...
分类:其他好文   时间:2015-12-06 11:33:49    阅读次数:190
1052. Linked List Sorting (25)
A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key ...
分类:其他好文   时间:2015-12-06 11:33:28    阅读次数:157
1051. Pop Sequence (25)
用一个vector 模拟栈每次检查输入,如果大于上次出栈的检查是否满足范围要求。满足的话将中间的数压栈如果小于上次出栈的检查是否为栈尾。满足的话最后一个数出栈Given a stack which can keep M numbers at most. Push N numbers in the o...
分类:其他好文   时间:2015-12-06 11:31:34    阅读次数:174
1031. Hello World for U (20)
时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueGiven any string of N (>=5) characters, you are asked to form the characters into the shape ...
分类:其他好文   时间:2015-12-06 11:33:14    阅读次数:137
03.插入ole控件,insert contrl 崩溃
pb ole 调用网页显示;_ 找不到Microsoft WebBrowser,在insert contrl里-------------------pb一点击insert contrl就崩溃按照参考②里的,反注册mstscax.dll报错,(dll名在导出的reg文件里是二进制,在regedit里看...
分类:其他好文   时间:2015-12-06 11:29:31    阅读次数:157
VCS filelist 文件格式
VCS在运行仿真一般都会加仿真参数 –f filelist,filelist 是包含其他的仿真参数和整个工程的文件列表。具体格式如下: //file list format, just for example +v2k -sverilog +define+USE_ASYNC_FIFO +incdir...
分类:其他好文   时间:2015-12-06 11:31:59    阅读次数:706
1041. Be Unique (20)
注意n的值很大的时候不能使用两层嵌套算法,这样执行时间将会很长时间限制100 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueBeing unique is so important to people on Mars that even thei...
分类:其他好文   时间:2015-12-06 11:30:59    阅读次数:150
mongodb副本集-读写分离
一、设置连接字符串读写分离 1.通过MongoDB连接字符串配置:mongodb://example1.com,example2.com,example3.com/?readPreference=secondary --只从secondary中读,如果secondary访问不了的时候就不能进行查询 ...
分类:数据库   时间:2015-12-06 11:31:28    阅读次数:173
1019. General Palindromic Number (20)
时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueA number that will be the same when it is written forwards or backwards is known as a Palind...
分类:其他好文   时间:2015-12-06 11:29:44    阅读次数:167
1022. Digital Library (30)
A Digital Library contains millions of books, stored according to their titles, authors, key words of their abstracts, publishers, and published years...
分类:其他好文   时间:2015-12-06 11:29:44    阅读次数:163
1026. Table Tennis (30)
注意数据合法性的检测。26分的时候 有人打了两个多小时,只能打两个小时,有人9点之后来的,要排除。时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueA table tennis club has N tables available ...
分类:其他好文   时间:2015-12-06 11:30:17    阅读次数:279
1039. Course List for Student (25)
1039. Course List for Student (25)时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueZhejiang University has 40000 students and provides 2500 c...
分类:其他好文   时间:2015-12-06 11:30:02    阅读次数:164
Java 散知识
final关键字的用法: 1. final关键字修饰一个基本类型的变量时,该变量不能重新赋值,第一次的值为最终的。 2. fianl关键字修饰一个引用类型变量时,该变量不能重新指向新的对象。 3. final关键字修饰一个函数的时候,该函数不能被重写。 4. final关键字修饰一个类的时候,该类不...
分类:编程语言   时间:2015-12-06 11:28:56    阅读次数:143
889条   上一页 1 ... 33 34 35 36 37 38 39 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!