Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2015-10-04 17:14:57
阅读次数:
294
实验内容1.使用JDK编译、运行简单的Java程序;2.使用Eclipse 编辑、编译、运行、调试Java程序。实验步骤与体会一、命令行下Java程序开发1、操作过程 在虚拟环境中打开Xface终端通过shell命令在主文件夹下的Code文件夹建立20159212文件夹,再 通过gedit He.....
分类:
编程语言 时间:
2015-10-04 17:15:47
阅读次数:
1414
基本思想 该方法的基本思想是:先将整个待排元素序列分割成若干个子序列(由相隔某个“增量”的元素组成的)分别进行直接插入排序,然后依次缩减增量再进行排序,待整个序列中的元素基本有序(增量足够小)时,再对全体元素进行一次直接插入排序。稳定性 由于多次插入排序,我们知道一次插入排序是稳定的,不会改变相.....
分类:
编程语言 时间:
2015-10-04 17:12:40
阅读次数:
309
最近在给客户做系统的时候,用户提出需求,要能够导入 word 文件,现在 microsoft word 有好几个版本 97、2003、2007的,这三个版本存储数据的格式上都有相当大的差别,而现在 97 基本上已经退出市场,几乎没有人用这个版本了, 所以在我们的系统中只考虑 2003 版本和 200...
分类:
其他好文 时间:
2015-10-04 17:14:58
阅读次数:
189
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.Follow up: Did you use extra space?A straight forward sol...
分类:
其他好文 时间:
2015-10-04 17:14:04
阅读次数:
176
1. 字符设备结构体 内核中所有已分配的字符设备编号都记录在一个名为 chrdevs 散列表里。该散列表中的每一个元素是一个 char_device_struct 结构,它的定义如下: static struct char_device_struct { struct char_device_st....
分类:
其他好文 时间:
2015-10-04 17:13:15
阅读次数:
147
1.面试题1> 如何防止一个url对应的图片重复下载* “cell下载图片思路 – 有沙盒缓存”2> SDWebImage的默认缓存时长是多少?* 1个星期3> SDWebImage底层是怎么实现的?* 上课PPT的“cell下载图片思路 – 有沙盒缓存”2.SDWebImage1> 常用方法- (...
分类:
移动开发 时间:
2015-10-04 17:12:54
阅读次数:
161
WeakReference弱引用概述http://www.cnblogs.com/xrq730/p/4836700.html,关于Java的四种引用状态具体请参看此文Java里一个对象obj被创建时,被放在堆里。当GC运行的时候,发现没有任何引用指向obj,那么就会回收obj对象的堆内存空间。但是现...
分类:
其他好文 时间:
2015-10-04 17:11:33
阅读次数:
178
在网站设计的时候,应该注意css样式兼容不同浏览器问题,特别是对完全使用DIV CSS设计的网,就应该更注意IE6 IE7 FF对CSS样式的兼容,不然,你的网乱可能出去不想出现的效果!所有浏览器 通用height: 100px;IE6 专用_height: 100px;IE6 专用*height:...
分类:
Web程序 时间:
2015-10-04 17:12:01
阅读次数:
230
#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include//#include#include#defineDEVIC...
分类:
其他好文 时间:
2015-10-04 17:13:29
阅读次数:
302
cmd.Style = (Style)this.Resources[ "AlternateBigButtonStyle"];后台设置style,来源于其他资源文件ResourceDictionary resourceDictionary = new ResourceDictionary();reso...
分类:
Web程序 时间:
2015-10-04 17:11:50
阅读次数:
215
提交表单是像下面这样的:代码$('#myform').submit()$('#myform').submit()所以,想当然的认为,重置表单,当然就是像下面这样子喽:代码$('#myform').reset()$('#myform').reset()但是,不幸的是,这样写的话,会有一个让你很郁闷的结...
分类:
Web程序 时间:
2015-10-04 17:10:57
阅读次数:
169
1.分类 创建型 结构型 行为型2.总体思路 使用接口和抽象类3.创建型 工厂: 单例:整个系统中对象是唯一的或固定数目的对象如对象池4.结构型
分类:
Web程序 时间:
2015-10-04 17:09:46
阅读次数:
177
Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.OJ's undirected graph serialization:Nodes are labeled u...
分类:
其他好文 时间:
2015-10-04 17:11:43
阅读次数:
239
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:
其他好文 时间:
2015-10-04 17:10:15
阅读次数:
140
题意:给你一百个点,找个以这些点为中心的最小的圆,使得这个圆恰好包含了n个点,而且这个圆的边界上并没有点解题思路:暴力枚举每个点,求出每个点到其他点的距离,取第n大的点,判断一下。 1 #include 2 #include 3 #include 4 #include 5 #include 6 us...
分类:
其他好文 时间:
2015-10-04 17:10:53
阅读次数:
165
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order. For example,Given the following matrix:[ [ 1,...
分类:
其他好文 时间:
2015-10-04 17:10:04
阅读次数:
165