随笔分类 -  数据结构与算法

摘要://Copyright 2009 Nicholas C. Zakas. All rights reserved.//MIT-Licensed, see source filefunction binarySearch(items, value){ var startIndex = 0, stopIndex = items.length - 1, middle = Math.floor((stopI... 阅读全文
posted @ 2010-04-23 15:14 郭振斌 阅读(791) 评论(0) 推荐(0)