最新文章列表

Spring之 context:exclude-filter 与 context:include-filter

1.在Spring的applicationContext.xml(主容器)中,将Controller(控制器)的注解打消掉 <context:component-scan base-package="com"> <context:exclude-filter type="annotation" experessio ...
chenlei.bean 评论(0) 有2276人浏览 2014-03-11 23:49

LeetCode: Same Tree

题目描述: Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value.   使用遍历 ...
carlosten 评论(0) 有509人浏览 2013-08-02 13:52

Leetcode: Add Binary

题目描述: Given two binary strings, return their sum (also a binary string). For example,a = "11"b = "1"Return "100".  
carlosten 评论(0) 有422人浏览 2013-08-01 23:28

LeetCode: Merge Sorted Array

  题目描述: Given two sorted integer arrays A and B, merge B into A as one sorted array. Note:You may assume that A has enough space to hold additional elements from B. The number of elements initializ ...
carlosten 评论(0) 有637人浏览 2013-07-29 15:55

LeetCode: Reverse Integer

题目描述: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321   翻转数字,读入数字之后分别得到最低位,次低位...,每次添 ...
carlosten 评论(0) 有685人浏览 2013-07-28 16:56

LeetCode: Climbing Stairs

题目描述: You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?   实际上是斐波那契数列,第n steps的方 ...
carlosten 评论(0) 有617人浏览 2013-07-28 16:00

Windows同步机制总结

临界区 在所有同步对象中,临界区是最容易使用的,但它不是内核对象,只能用于同步单个进程中的线程。临界区一次只允许一个线程取得对某个数据区的访问权。还有,在这些同步对象中,只有临界区不是内核对象,它不由操作系统的低级部件管理,而且不能使用句柄来操纵。 由于使用时不需要从用户态切换到核心态,所以速度很快(X86系统上约为20个指令周期),非常适合于序列化对一个进程中的数据的访问,但其缺点是不能跨 ...
pinshiqi 评论(0) 有3人浏览 2012-08-29 12:05

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics