https://oj.leetcode.com/problems/word-search/http://blog.csdn.net/linhuanmars/article/details/24336987publicclassSolution{
publicbooleanexist(char[][]board,Stringword)
{
Map<Character,List<P>>map=buildMap(board);
booleanr=visit(map,word.toCharAr..
分类:
其他好文 时间:
2015-01-04 19:33:20
阅读次数:
146
https://oj.leetcode.com/problems/remove-duplicates-from-sorted-array-ii/http://blog.csdn.net/linhuanmars/article/details/24343525publicclassSolution{
publicintremoveDuplicates(int[]A){
if(A==null)
return-1;//invalidinput
if(A.length==0||A.length==1)
retur..
分类:
其他好文 时间:
2015-01-04 19:32:41
阅读次数:
133
https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list/http://blog.csdn.net/linhuanmars/article/details/24354291/**
*Definitionforsingly-linkedlist.
*publicclassListNode{
*intval;
*ListNodenext;
*ListNode(intx){
*val=x;
*next=null;
*}
*}
*/
pub..
分类:
其他好文 时间:
2015-01-04 19:31:37
阅读次数:
201
https://oj.leetcode.com/problems/search-in-rotated-sorted-array-ii/http://blog.csdn.net/linhuanmars/article/details/20588511publicclassSolution{
publicbooleansearch(int[]A,inttarget){
if(A==null||A.length==0)
returnfalse;
returnfind(A,0,A.length-1,target);
..
分类:
其他好文 时间:
2015-01-04 19:31:08
阅读次数:
133
https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list-ii/http://blog.csdn.net/linhuanmars/article/details/24389429/**
*Definitionforsingly-linkedlist.
*publicclassListNode{
*intval;
*ListNodenext;
*ListNode(intx){
*val=x;
*next=null;
*}
*}
*/
..
分类:
其他好文 时间:
2015-01-04 19:30:52
阅读次数:
150
软件都安装运行在windows上,版本如下:mod_wsgi-3.5.ap24.win32-py2.7.ziphttpd-2.4.10-win32-VC11.zip安装apachewindows安装apache2.4参考http://blog.csdn.net/zwfcan/article/details/8173838(windows安装PHP5.4+Apache2.4+Mysql5.5)安装mod_wsgi参考http://www.cnblogs.com..
分类:
Web程序 时间:
2015-01-04 19:27:36
阅读次数:
268
http://blog.csdn.net/cdut100/article/details/19972749
分类:
数据库 时间:
2015-01-04 19:26:47
阅读次数:
249
1、定义webservice调用类using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Net;using System.IO;using System.Servic...
博主问题只是出在误删了style.js文件首先我用的是这种模式,在单个页面上导入:然后直接把空间拖放到页面上 出现的问题是IE浏览器,360兼容模式都能正常显示,但360极速模式显示不了。此时在极速模式点F12,发现生成的html是这样而在兼容模式点F12,发现生成的html是这样看这些代码...
分类:
Web程序 时间:
2015-01-04 19:12:15
阅读次数:
208
Demo.sql 1 create table Car( 2 [id] int identity, 3 [brand] varchar(50) not null, 4 [type] varchar(50) not null 5 ) 6 go 7 8 insert into ...
分类:
Web程序 时间:
2015-01-04 19:09:25
阅读次数:
194