原文:
Write a program to sort a stack in ascending order. You should not make any assumptions about how the stack is implemented. The following are the only functions that should be used to write thi...
分类:
其他 时间:
2014-03-03 03:11:52
收藏:
0 评论:
0 赞:
0 阅读:
488
原题链接: http://oj.leetcode.com/problems/implement-strstr/
这是算法中比较经典的问题,判断一个字符串是否是另一个字符串的子串。这个题目最经典的算法应该是KMP算法,不熟悉的朋友可以参见Knuth–Morris–Pratt
algorithm。KMP算法是最优的线性算法,复杂度已经达到这个问题的下限。但是KMP算法比较复杂,很难在面试的短时...
分类:
其他 时间:
2014-03-03 05:10:09
收藏:
0 评论:
0 赞:
0 阅读:
489
An animal shelter holds only dogs and cats, and operates ona strictly “first in, first out” basis. People must adopt either the
“oldest”(based on arrival time) of all animals at the shelter, or they...
分类:
其他 时间:
2014-03-03 04:08:47
收藏:
0 评论:
0 赞:
0 阅读:
412
用于自动生成纹理坐标的函数:
void glTexGeni (GLenum coord, GLenum pname, GLint param);
//参数coord必须是GL_S、GL_T、GL_R或GL_Q
//pname参数为GL_TEXTURE_GEN_MODE、GL_OBJECT_PLANE或GL_EYE_PLANE,
//如果是GL_TEXTURE_GEN_...
分类:
其他 时间:
2014-03-03 02:42:32
收藏:
0 评论:
0 赞:
0 阅读:
1162
原题链接: http://oj.leetcode.com/problems/search-insert-position/
这道题比较简单,就是二分查找。思路就是每次取中间,如果等于目标即返回,否则根据大小关系切去一半。因此算法复杂度是O(logn),空间复杂度O(1)。代码如下:
public int searchInsert(int[] A, int target) {
if(...
分类:
其他 时间:
2014-03-03 03:05:48
收藏:
0 评论:
0 赞:
0 阅读:
426
今天继续学习RDLC报表的“参数传递”及“主从报表”一、先创建DataSet,如下图:二、创建一个报表rptDEPT.rdlc,显示部门T_DPET的数据三、嵌入Default.aspx中,写在Default.aspx.cs中写些基本代码+
View Code?1234567891011121314...
分类:
其他 时间:
2014-03-03 02:11:56
收藏:
0 评论:
0 赞:
0 阅读:
898
/** @property和@synthesize关键字是针对成员变量以及get/set方法而言的
从Xcode4.4以后@property已经独揽了@synthesize的功能主要有三个作用: (1)生成了成员变量get/set方法的声明
(2)生成了私有的带下划线的的成员变量因此子类不可以直接访...
分类:
其他 时间:
2014-03-03 02:08:53
收藏:
0 评论:
0 赞:
0 阅读:
414
源码地址:https://github.com/ren-gh/Study2014/tree/master/SmsAndPhoneReceiver功能介绍:
安装后无图标,监听接收到的短信,以及拨入点电话,并将短信内容、发件人号码以及来电号码发送到指定号码。功能实现: 注册一个 BroadReceiv...
分类:
移动平台 时间:
2014-03-03 02:05:47
收藏:
0 评论:
0 赞:
0 阅读:
596
最近在做的一个项目其中的一部分是与远程服务器进行交互,确定身份验证的合法性,于是编写了SendRequest方法此方法发送给远程服务器XML请求,服务器经过处理后,返回XML回应,由此方法接收到后进行返回。
1 protected string SendRequest(string strXML) ...
分类:
其他 时间:
2014-03-03 02:04:16
收藏:
0 评论:
0 赞:
0 阅读:
554
Ref:How to get file name without the
extension?Normally,there are two ways to implements this:use the library or the
regular expression.here I use the...
分类:
其他 时间:
2014-03-03 02:02:41
收藏:
0 评论:
0 赞:
0 阅读:
570
如果是作为客户端的HTTP+JSON接口工程,没有JSP等view视图的情况下,使用Jersery框架开发绝对是第一选择。而在基于Spring3
MVC的架构下,对HTTP+JSON的返回类型也有很好的支持。但是,在开发工作中,对功能的升级是基于既定架构是很常见的情况。本人碰到需要用开发基于Stru...
分类:
Web开发 时间:
2014-03-03 02:01:12
收藏:
0 评论:
0 赞:
0 阅读:
811
(functiong(){})() 和
(function(){}())有细微差别,()是强制运算符,第一种写法强制返回函数本身,然后调用;第二种写法是强制返回函数执行的结果
分类:
其他 时间:
2014-03-03 01:59:39
收藏:
0 评论:
0 赞:
0 阅读:
661
1 2 3 4 5 6 7 8 9</body
分类:
Web开发 时间:
2014-03-03 01:58:08
收藏:
0 评论:
0 赞:
0 阅读:
515
arcengine创建网络数据集
分类:
其他 时间:
2014-03-03 01:56:33
收藏:
0 评论:
0 赞:
0 阅读:
837
>" id="btnAllAdd" /> " id="btnAdd" /> ...
分类:
Web开发 时间:
2014-03-03 01:53:31
收藏:
0 评论:
0 赞:
0 阅读:
587
本文主要体验用jQuery
Easyui的datagrid来实现Master-Detail主次表。谢谢Kevin的博文,助我打开了思路。
主表显示所有的Category,当点击主表的展开按钮,显示该Category下的所有Product。 涉及显示的2个Model 展开namespace
DataG...
分类:
Web开发 时间:
2014-03-03 01:51:56
收藏:
0 评论:
0 赞:
0 阅读:
672
JVM是java知识体系的基石之一,任何一个java程序的运行,都要借助于他。或许对于我这种初级程序员而言,工作中很少有必要刻意去关注JVM,然而如果能对这块知识有所了解,就能够更清晰的明白程序的运行机制,从而写出更为健壮的代码,也能更好的理解java中很多处理方式的原因。以下是个人读书后整理的知识...
分类:
其他 时间:
2014-03-03 01:55:03
收藏:
0 评论:
0 赞:
0 阅读:
599
Ref:check whether a file or directoryFirst,
make sure the path exists by using:new File(path).exists();Then check whether it
a directory using:1 new F...
分类:
其他 时间:
2014-03-03 01:48:54
收藏:
0 评论:
0 赞:
0 阅读:
574
模块级内联汇编(Module-Level Inline
Assembly)模块包含“module-level inline assembly”块,这与GCC中的“file scope inline
asm”块的相同的。这些块将被LLVM内部链接并当作一个单独的单元,但如果希望的话,它们在.ll 文件...
分类:
其他 时间:
2014-03-03 01:50:26
收藏:
0 评论:
0 赞:
0 阅读:
701
arcengine创建网络数据集
分类:
其他 时间:
2014-03-03 01:47:23
收藏:
0 评论:
0 赞:
0 阅读:
616