摘要: 索引查找其实这个算法没有怎么理解了。上代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;//哈希查找程序namespace Test{ class Program { //索引实体 class IndexItem { public int index; public int start; public int length; } ... 阅读全文
posted @ 2013-03-27 11:19 大器天下 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 今天想调试google官方给的sip-deamon,结果启动不了adbC:\Users\xxxx>adb start-serveradb server is out of date. killing...ADB server didn't ACK* failed to start daemon *一直这样报错,百度一下,才知道是端口被占用了。C:\Users\xxxx>adb nodaemon servercannot bind 'tcp:5037'查看是哪个端口被占用C:\Users\xxxxxx>netstat -ano | findstr &qu 阅读全文
posted @ 2013-03-27 09:27 大器天下 阅读(345) 评论(0) 推荐(0) 编辑