在无线网络发达的时代,随时随地搜索免费Wi-Fi,已经成为许多人的习惯。咖啡店、机场这类公共场所通常能够让人们享受到随时接入互联网的便捷,越来越多的各类智能移动设备正在抢占Wi-Fi资源。传统Wi-Fi所能覆盖的范围有限,限制了移动生活的便捷性,同时,无线热点的增多还会带来相互干扰问题,进而影响无线网络速度。因此,人们需要覆盖范围更广、速率更高的无线宽带网络,而超级Wi-Fi技术正在让宽带互联网无...
分类:
其他好文 时间:
2014-06-19 12:20:31
阅读次数:
315
RI (Reverse Integration) / FI (Forward Integration)RI :child branch => parent branchFI :parent branch =>child branch
分类:
其他好文 时间:
2014-06-15 16:52:09
阅读次数:
216
{ "Code": 200, "Msg": "", "Result": "{\"PlatformTypeList\": \"啦啦\"}"}{ "Code": 200, "Msg": "", "Result": {"PlatformTypeList": "啦啦"}}
分类:
Web程序 时间:
2014-06-15 16:07:39
阅读次数:
219
int.TryParse与 int.Parse 的区别是,int.TryParse不会产生异常,转换成功返回 true,转换失败返回 false。最后一个参数为输出值,如果转换失败,输出值为 0。用法int a=0;bool Result = int.TryParse("100",a)
分类:
其他好文 时间:
2014-06-15 16:05:38
阅读次数:
149
给定一个矩阵,寻找连通域个数:前后左右相同为连通ex:0 1 0 10 1 1 10 0 1 00 1 0 0输出2利用深度搜索思路: 1 public static int getCount(int[][] A) { 2 int result = 0; 3 ...
分类:
编程语言 时间:
2014-06-15 12:23:22
阅读次数:
758
原文部分内容来源于网上其他博客,不过由于时间长了,忘记参考的是谁的了,在此说声抱歉。。
先贴出一段html页面:
HTML Parser
想学习
Name
Result
Time
Synopsis
9
想学习
<font
...
分类:
Web程序 时间:
2014-06-15 10:54:38
阅读次数:
340
Source CodeProblem:3415User:wangyuchengMemory:16492KTime:704MSLanguage:C++Result:AcceptedSource Code#include#include#include#includeusing namespace st...
分类:
其他好文 时间:
2014-06-14 21:41:07
阅读次数:
215
题目描述:输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字class Solution {public: vector spiralOrder(vector > &matrix) { vector result; int nRows = matrix.s...
分类:
其他好文 时间:
2014-06-14 21:27:53
阅读次数:
156
一、等待与通知
public final void wait() throws InterruptedException
等待条件的发生。
public final void wait(long timeout) throws InterruptedException
等待条件的发生。如果通知没有在timeout指定的时间内发生,它还是会返回。
public fi...
分类:
编程语言 时间:
2014-06-14 14:10:33
阅读次数:
425
Problem Description
give you a string, please output the result of the following function mod 1000000007
n is the length of the string
f() is the function of fibonacci, f(0) = 0, f(1) = 1...
a...
分类:
其他好文 时间:
2014-06-14 11:45:49
阅读次数:
243