首页 > 2014年02月08日 > 全部分享
LeetCode: Linked List Cycle I & II
Given a linked list, determine if it has a cycle in it.想了好半天没想出来,后来看网上的做法。用快慢两个指针,慢指针每次移动一位,快指针每次移动两位。如果存在环的话,两个指针一定会相遇。最差的情况是,在慢指针进入环的时候,快指针恰巧在慢指针前面一...
分类:其他   时间:2014-02-08 09:20:22    收藏:0  评论:0  赞:0  阅读:343
Sharepoint学习笔记—习题系列--70-573习题解析 -(Q133-Q135)
Sharepoint学习笔记—习题系列--70-573习题解析 -(Q133-Q135)
分类:其他   时间:2014-02-08 09:18:42    收藏:0  评论:0  赞:0  阅读:346
C#集合基础与运用
C#集合基础与运用转至:http://www.cnblogs.com/LiZhiW/p/3539839.html1.集合接口与集合类型(1)集合的命名空间大多数集合类都可以在 System.Collections 和 System.Collections.Generic 名称空间中找到。泛型集合位于...
分类:其他   时间:2014-02-08 09:17:02    收藏:0  评论:0  赞:0  阅读:343
Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他   时间:2014-02-08 09:17:52    收藏:0  评论:0  赞:0  阅读:365
[Leetcode]-- Longest Palindromic Substring
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:其他   时间:2014-02-08 09:16:12    收藏:0  评论:0  赞:0  阅读:465
[Leetcode]-- Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他   时间:2014-02-08 09:15:22    收藏:0  评论:0  赞:0  阅读:363
VS2013中web项目中自动生成的ASP.NET Identity代码思考
vs2013没有再分webform、mvc、api项目,使用vs2013创建一个web项目模板选MVC,身份验证选个人用户账户。项目会生成ASP.NET Identity的一些代码。这些代码主要在AccountController中。 ASP.NET Identity微软宣称的好处就不说了,这是原文...
分类:Web开发   时间:2014-02-08 09:12:52    收藏:0  评论:0  赞:0  阅读:575
[Leetcode]-- Search a 2D Matrix
Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are sorted from l...
分类:其他   时间:2014-02-08 09:13:42    收藏:0  评论:0  赞:0  阅读:348
子查询与内嵌视图
子查询是完整的查询语句。子查询首先生成结果集,并将结果集应用于条件语句。子查询与内嵌视图不同。内嵌视图也可以看作临时查询结果,但是内嵌视图出现在from子句中,并与其他数据源(数据表、视图等)形成笛卡尔积运算。而子查询单独运算,不会与其他数据源进行笛卡尔积运算。子查询可以出现在插入、查询、更新和删除...
分类:其他   时间:2014-02-08 09:12:02    收藏:0  评论:0  赞:0  阅读:319
[Leetcode]-- Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:其他   时间:2014-02-08 09:11:12    收藏:0  评论:0  赞:0  阅读:333
[Leetcode]--Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他   时间:2014-02-08 09:08:42    收藏:0  评论:0  赞:0  阅读:292
[Leetcode]-- Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?参考:水中的鱼: [LeetCode]...
分类:其他   时间:2014-02-08 09:09:32    收藏:0  评论:0  赞:0  阅读:580
win 下python2.7 pymssql连接ms sqlserver 2000
python DB-API 连接mysql 要用到库pymssql 下载请到https://pypi.python.org/pypi/pymssql/2.0.1我这里下载的是ms windows installer版本exe文件,直接运行就可以了,whl和egg格式的看不懂怎么安装.下载完,试着连接...
分类:数据库技术   时间:2014-02-08 09:07:02    收藏:0  评论:0  赞:0  阅读:598
【C#小知识】C#中一些易混淆概念总结(六)---------解析里氏替换原则,虚方法
目录:【C#小知识】C#中一些易混淆概念总结--------数据类型存储位置,方法调用,out和ref参数的使用【C#小知识】C#中一些易混淆概念总结(二)--------构造函数,this关键字,部分类,枚举【C#小知识】C#中一些易混淆概念总结(三)--------结构,GC回收,静态成员,静态...
分类:其他   时间:2014-02-08 09:05:22    收藏:0  评论:0  赞:0  阅读:365
Python多线程编程
1.全局解释器锁定 Python虚拟机使用GIL(Global Interpreter Lock,全局解释器锁定)来互斥线程对共享资源的访问,暂时无法利用多处理器的优势。虽然python解释器可以“运行”多个线程,但在任意时刻,不管有多少的处理器,任何时候都总是只有一个线程在执行。对于I/O密集型任...
分类:编程语言   时间:2014-02-08 09:04:32    收藏:0  评论:0  赞:0  阅读:548
MYSQL复习笔记7-索引
Date: 20140207Auth: Jin一、索引结构 Index_type 包括B-Tree,Hash,full-text,R-Tree1、B-Tree 除Archive存储引擎外其他存储引擎都支持,使用最频繁2、Hash Memory和NDB Cluster支持,使用较少3、Full-tex...
分类:数据库技术   时间:2014-02-08 09:03:42    收藏:0  评论:0  赞:0  阅读:453
MyEclipse配置
习惯了Visual Studio的智能感应,突然转写Java还真有些不习惯,特别是它的智能感应。后面百度了一些,发现MyEclipse也可以做到和Visual Studio差不多的。打开:Window->Preferences->Java->Editor->Content Assist将Auto a...
分类:其他   时间:2014-02-08 09:02:52    收藏:0  评论:0  赞:0  阅读:328
vs2012中使用Icenium开发应用
Developing a Cross Platform Mobile App in Visual Studio using JavaScript & HTML5 http://www.dotnetcurry.com/showarticle.aspx?ID=950 IOS需要使用http://www....
分类:其他   时间:2014-02-08 09:02:02    收藏:0  评论:0  赞:0  阅读:381
【HTTP】之HTTP 错误 401.3 - 访问被资源 ACL 拒绝
今天想回家继续修改白天写的网站,存在Google Drive来着,结果一拿回来就出了"HTTP 错误 401.3 - 访问被资源 ACL 拒绝",奶奶的,查了半天,主要发现还是账户权限问题。修改方法很简单,对应站点目录的IUSR的权限没设造成的...在属性——>安全——> 高级 中把IUSR用户找出...
分类:其他   时间:2014-02-08 08:59:32    收藏:0  评论:0  赞:0  阅读:353
Windows Embedded Compact 7 打包和部署程序(下)
1.5.2设计规范由于.NETCompactFramework的局限性,某些要求对托管代码开发者来说被放宽了,例如,在程序中提供退出选项或支持平台的“帮助”菜单。现在,您可以决定是否在程序中添加退出选项。这个决定基于设备的使用模式和目标用户的需求。在CompactFramework2.0版本中,能够...
分类:Windows开发   时间:2014-02-08 08:57:02    收藏:0  评论:0  赞:0  阅读:888
337条   上一页 1 ... 10 11 12 13 14 ... 17 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!