一:冒泡算法,也叫冒泡排序,其特点如下: 1.比较相邻的元素。如果第一个比第二个大,就交换他们两个。 2.对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对。在这一点,最后的元素应该会是最大的数。 3.针对所有的元素重复以上的步骤,除了最后一个。 4.持续每次对越来越少的元素重复上面的步骤,
分类:
编程语言 时间:
2016-01-31 09:38:43
阅读次数:
162
http://redis.readthedocs.org/en/2.4/set.html1, client.end();redis.expire(key,10) ,lsize,llen APPEND mykey " yiibai"client.select('15', function(error)
分类:
其他好文 时间:
2016-01-31 09:38:27
阅读次数:
175
题记:“锦瑟无端五十弦,一弦一柱思华年。庄生晓梦迷蝴蝶,望帝春心托杜鹃。沧海月明珠有泪,蓝田日暖玉生烟。此情可待成追忆,只是当时已惘然。” 怅望千载,谁解义山悲? 《锦瑟》诗千载难解,用心解读或闲来附会者诜诜。今我来解,虽用心备至,但也可能沦为附会之说。为了义山能少些悲恸,我暂逞一时之能为其抚慰伤口
分类:
其他好文 时间:
2016-01-31 09:37:05
阅读次数:
222
通过条件的查询 select from Employee e where 1=1 and e.name like ‘%李%’ and e.name like '%王%' order by e.name desc;
分类:
其他好文 时间:
2016-01-31 09:35:17
阅读次数:
170
今天在使用vs2012的Nuget功能向新建MVC项目中添加bootstrap时出现一个错误:“未能解析此远程名称api.nuget.org”: 网上查阅资料得知:nuget.org使用的godaddy的域名服务器,而godaddy的域名服务器在国内被大规模屏蔽,所以在国内的dns服务器自然查询不到
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element. For exam
分类:
其他好文 时间:
2016-01-31 09:35:56
阅读次数:
179
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3.dtd"> ***Mapper.xml前面的配置文件
分类:
其他好文 时间:
2016-01-31 09:34:31
阅读次数:
141
奔小康赚大钱 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4211 Accepted Submission(s): 1825 Problem
分类:
其他好文 时间:
2016-01-31 09:34:31
阅读次数:
146
摘要: 票房狂欢:年轻一代的文化幼稚病 强烈的“同龄认同”造成“80和90后”群体的内在悖谬:他们以有“个性”自诩,又明显缺乏自信,否则需要什么“认同”?其典型表现是“偶像情结”和“粉丝心态”这一枚硬币的两面。 电影作为工业化时代的文艺形式,需要“票房大卖”,这是毫无疑义的。但让商业,特别是
分类:
其他好文 时间:
2016-01-31 09:35:12
阅读次数:
128
以下就是整MVC样例的源代码:#windows应用程序 #开发者:蔡军生(QQ:9073204) 深圳 2014-9-24 #使用类来描写叙述 from ctypes import * from ctypes.wintypes import * WS_EX_APPWINDOW = 0x40000 W
分类:
Web程序 时间:
2016-01-31 09:34:14
阅读次数:
249
注意问题: 1)字符串是空指针的情况。 2)假设输入的是一个空字符串“” 3)全部‘0’到‘9’之外的字符都是非法的吗?加号和减号是合法输入。 4) 考虑溢出 #include <iostream> using namespace std; bool g_value=false; int atoi(
分类:
其他好文 时间:
2016-01-31 09:33:12
阅读次数:
150
1.在ItemView配置的xml文件里的根节点加入属性android:descendantFocusability="blocksDescendants" 2.在要加入事件的控件上加入android:focusable="false
分类:
其他好文 时间:
2016-01-31 09:33:00
阅读次数:
127
Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same parent node) or empty, flip it up
分类:
其他好文 时间:
2016-01-31 09:34:38
阅读次数:
204
简介 QQ是深圳市腾讯计算机系统有限公司开发的一款基于Internet的即时通信(IM)软件。腾讯QQ支持在线聊天、视频电话、点对点断点续传文件、共享文件、网络硬盘、自定义面板、QQ邮箱等多种功能,并可与移动通讯终端等多种通讯方式相连。 解决方案 WineQQ Wine QQ是通过CrossOver
分类:
其他好文 时间:
2016-01-31 09:33:59
阅读次数:
326
在UML 2.0的13种图形中,类图是使用频率最高的UML图之一。Martin Fowler在其著作《UML Distilled: A Brief Guide to the Standard Object Modeling Language, Third Edition》(《UML精粹:标准对象建模
分类:
其他好文 时间:
2016-01-31 09:33:18
阅读次数:
227
Redis is a fast and efficient in-memory key-value store. It is also known as a data structure server, as the keys can contain strings, lists, sets, ha
分类:
其他好文 时间:
2016-01-31 09:31:40
阅读次数:
247
(1)sadd 向一个集合中添加一个元素。例如:sadd set1 Hello (2)smembers 查看集合中的所有元素。例如:smembers set1 (3)srem 删除集合中一个指定的元素。例如:srem set1 Hello (4)spop 随机弹出set集合中德一个元素。例如:spo
分类:
其他好文 时间:
2016-01-31 09:33:58
阅读次数:
135