码迷,mamicode.com
首页 > 2014年06月07日 > 全部分享
JS常见面试题目 选择的第几个radio,name一样都叫radiogroup
function parse() { } 完成parse()函数的内容,要求能够弹出对话框提示当前选中的是第几个单选框。 答案 function parse() { var content =...
分类:Web程序   时间:2014-06-07 11:38:16    阅读次数:213
WinCE将开始那里的“挂起”隐藏,去掉,禁止的办法
在我们WINCE工程编译的release目录的shell.reg的HKEY_LOCAL_MACHINE\Explorer添加suspend子键来控制 [HKEY_LOCAL_MACHINE\Explorer] "RecycleBinSize"=dword:A "ShowExt"=dword:0 "ShowSys"=dword:0 "UseCompatibleBGIma...
分类:Windows程序   时间:2014-06-07 14:29:53    阅读次数:373
关于++和--运算符的理解
c语言里面的++/--的深入认知。...
分类:其他好文   时间:2014-06-07 16:10:04    阅读次数:144
openwrt教程 第一章 物联网&openwrt开发概述
该教程是F403科技创意室基于RT5350开发板写的openwrt中文教程!该教程还会不断更新!让广大读者,彻底掌握openwrt系统的开发!跟我们一起来学习openwrt吧!物联网的时代!...
分类:其他好文   时间:2014-06-07 13:43:23    阅读次数:537
Hadoop之MapReduce程序开发流程
摘要:MapReduce程序开发流程遵循算法思路、Mapper、Reducer、作业执行的步骤。...
分类:其他好文   时间:2014-06-07 13:42:08    阅读次数:242
删除条目时的确认对话框
id;?>" class="btn">编辑   id;?>';}" class="btn">删除...
分类:其他好文   时间:2014-06-07 15:25:38    阅读次数:212
projecteuler---->problem=19----Counting Sundays
You are given the following information, but you may prefer to do some research for yourself. 1 Jan 1900 was a Monday.Thirty days has September, April, June and November. All the rest have thirty...
分类:其他好文   时间:2014-06-07 13:56:52    阅读次数:166
允许进行DML操作的视图条件
视图可以屏蔽某些基表的信息,或是join多个基表组成一个复杂查询,视图本身也是可以进行DML操作,但受一些条件的限制。 首先我们看下官方文档对视图进行DML操作的要求说明: The following notes apply to updatable views: An updatable view is one you can use to insert, update, or...
分类:其他好文   时间:2014-06-07 16:08:45    阅读次数:264
Android多线程研究(7)——Java5中的线程并发库
从这一篇开始我们将看看Java 5之后给我们添加的新的对线程操作的API,首先看看api文档:java.util.concurrent包含许多线程安全、测试良好、高性能的并发构建块,我们先看看atomic包下的AtomicInteger.import java.util.concurrent.atomic.AtomicInteger; public class AtomicIntegerTest...
分类:移动开发   时间:2014-06-07 11:37:37    阅读次数:272
LeetCode: Path Sum [112]
【题目】 Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. For example: Given the below binary tree and sum = 22, 5 / ...
分类:其他好文   时间:2014-06-07 13:57:37    阅读次数:210
拿到一个新 bug 怎样分析
拿到一个新 bug 怎样分析...
分类:其他好文   时间:2014-06-07 16:08:04    阅读次数:152
java-IO操作性能对比
在软件系统中,IO速度比内存速度慢,IO读写在很多情况下会是系统的瓶颈。 在java标准IO操作中,InputStream和OutputStream提供基于流的IO操作,以字节为处理单位;Reader和Writer实现了Buffered缓存,以字符为处理单位。 从Java1.4开始,增加NIO(New IO),增加缓存Buffer和通道Channel,以块为处理单位,是双向通道(可读可写,类似RandomAccessFile),支持锁和内存映射文件访问接口,大大提升了IO速度。 以下例子简单测试常见IO操作...
分类:编程语言   时间:2014-06-07 15:49:03    阅读次数:283
LeetCode: Flatten Binary Tree to Linked List [114]
【题目】 Given a binary tree, flatten it to a linked list in-place. For example, Given 1 / 2 5 / \ 3 4 6 The flattened tree should look like: 1 2 3 4 \...
分类:其他好文   时间:2014-06-07 11:37:00    阅读次数:153
LeetCode: Populating Next Right Pointers in Each Node [116]
【题目】 Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; } Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be...
分类:其他好文   时间:2014-06-07 14:28:36    阅读次数:215
projecteuler---->problem=21----Amicable numbers
Let d(n) be defined as the sum of proper divisors of n (numbers less than n which divide evenly into n). If d(a) = b and d(b) = a, where a b, then a and b are an amicable pair and each of a and b...
分类:其他好文   时间:2014-06-07 13:40:53    阅读次数:226
MFC程序实现给对话框添加背景图片
1.插入一个Bitmap的资源图片,假设资源名称为:IDC_BITMAP1 2.在CXXXDialog::OnPaint()中实现: void CMyDialogDlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERA...
分类:其他好文   时间:2014-06-07 15:23:43    阅读次数:266
4096!——化简的2048游戏
这个能轻松到达 4096. 所以取名为 4096了。优化一下2048. 核心玩法没有变,只是降低了难度。...
分类:其他好文   时间:2014-06-07 13:56:11    阅读次数:197
1252条   上一页 1 ... 28 29 30 31 32 33 34 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!