this list is very important , you can not
download what you want like fictx , flash-plugin , vm-tool and so onyou can use
the sites of China , also yo...
分类:
系统相关 时间:
2014-05-01 14:13:25
阅读次数:
561
Bootstrap 图标由 Glyphicons
提供。详情可以去bootstrap官网进行查看。用法: 实例:一个搜索表单 Example of using icons in search form -
Bootstrap version 2.0 ...
分类:
其他好文 时间:
2014-05-01 13:14:52
阅读次数:
573
using System;using System.Web;public class
Search_Book : IHttpHandler { public void ProcessRequest (HttpContext context) {
context.Respo...
分类:
其他好文 时间:
2014-04-30 23:28:59
阅读次数:
372
Quick install guide1.1 Install Python, it works
with Python2.6, 2.7, 3.2, 3.3. All these version of Python include a lightweight
database SQLite, so y...
分类:
其他好文 时间:
2014-04-30 23:14:34
阅读次数:
566
冒泡排序
思路:就是每次将最大或最小的元素放到数组的最后,so easy!时间复杂度为(O(n^2))
public class BubbleSort {
public static void bubbleSort(int[] a) {
for (int j = 1; j < a.length; j++) {
for (int i = 0; i < a.length - j; i+...
分类:
编程语言 时间:
2014-04-30 22:12:40
阅读次数:
309
一开始听到WPF,觉得很陌生。在百度百科等地方看完简介之后,感觉更深奥,各种不懂啊!在简单做了几个页面之后,发现,原来如此!
So Easy 但又So Magic。
为什么说它简单?因为它简直就是html的C/S模式嘛!
微软退出WPF,是为了让桌面应用更加美观。我认为其中加入了很多B/S模式的理念,尤其是样式的控制方面。当然,各种控件仍然是我们快速开发的利器。...
分类:
其他好文 时间:
2014-04-29 13:48:20
阅读次数:
248
前面的博客中我们讲到的堆的两种变体,二叉堆和二项堆,今天我们要讲的就是著名的斐波那契堆。二项堆和斐波那契堆对于search操作的支持均比较低效;可能花费一段时间才能找到关键字。为此,涉及给定元素的操作(如DECREASE-KEY和DELETE)均需要一个指针指向这个元素,并且指针作为输入的一部分。...
分类:
其他好文 时间:
2014-04-29 13:36:20
阅读次数:
331
泛型的Binary Search Tree的实现,并与STL map进行操作性能上的比较...
分类:
其他好文 时间:
2014-04-29 13:27:22
阅读次数:
420
Problem 1977 Pandora adventure
Accept: 354 Submit: 1177
Time Limit: 1000 mSec Memory Limit : 32768 KB
Problem Description
The pollution of the earth is so serious that people can no...
分类:
其他好文 时间:
2014-04-29 13:13:22
阅读次数:
369
搜索是一个核心用户特性在Android上。用户应该能够搜索可用的任何数据,内容是否位于设备或网络。帮助为用户创建一个一致的搜索体验,Android提供了一个搜索框架,可以帮助你实现搜索应用程序。...
分类:
移动开发 时间:
2014-04-27 21:16:05
阅读次数:
422