冒泡排序代码:
#include
#include
using namespace std;
template
void bubbleSort(ItemType theArray[], int n)
{
bool sorted = false; // False when swaps occur
int pass = 1;
while (!sorted && (pass...
分类:
其他好文 时间:
2014-07-22 00:32:35
阅读次数:
363
新增用户 sudo useradd -m -s /bin/bash $USER加入sudo组 sudo adduser $USER sudo修改密码 sudo passwd $USER禁止用户使用shell登录系统 sudo usermod -s /bin/false $USER
分类:
系统相关 时间:
2014-07-22 00:25:35
阅读次数:
311
注:要使用此方法都需要引入应用:using System.Threading;//引入应用参数意义:将要执行的方法排入队列以便执行,WaitCallback,即表示将要执行的方法;Object,包含方法所用数据的对象。如果将方法成功排入队列,则为 true;否则为 false。一、下面是Thread...
分类:
其他好文 时间:
2014-07-22 00:15:36
阅读次数:
241
public bool IsSys64bit()
{
if (IntPtr.Size == 8) return true;
return false;
}...
分类:
其他好文 时间:
2014-07-21 15:36:15
阅读次数:
211
1.首先将settings设置debug=false。2.STATICFILES_DIRS = ( 'static', os.path.join(os.path.dirname(__file__), '..', 'static'), # Put strings here, like "/home/h...
分类:
其他好文 时间:
2014-07-21 14:33:09
阅读次数:
189
http://blog.sina.com.cn/s/blog_3e333c4a010133ze.html 1、建立myprogress.xml在 res/anim中 <?xml version="1.0" encoding="UTF-8"?> <animation-list android:oneshot="false" xmlns:android="http://schemas...
分类:
移动开发 时间:
2014-07-21 13:26:59
阅读次数:
224
超时代码:#include using namespace std;//写一个函数判断是否是素数bool isPrime(int num){int i=2;//coutnum)return true; else return false;}int main(){ int T; cin>>...
分类:
其他好文 时间:
2014-07-21 10:01:49
阅读次数:
246
Java中必须使用string1.equals(string2)来进行判断 补充如果: string s1=new String("Hello"); string s2=new String("Hello"); 则(s1==s2)=false 如果: string s1="Hello"; strin...
分类:
编程语言 时间:
2014-07-21 09:30:52
阅读次数:
245
使用标准dom的方法:document.oncontextmenu=function(oEvent){ if(window.event){ //IE oEvent=window.event; oEvent.returnValue=false; }else{//FireFox oEvent.p...
分类:
其他好文 时间:
2014-07-21 08:00:47
阅读次数:
252
pre_permutation
----------------------------------------------------------------
描述: 取得 [first, last) 所标示之序列的前一个排列组合。如果没有,返回 false,有,返回true
思路:
从后往前
1.找两个相邻元素,令左端的元素为*i,右端的元素为*ii,且满足 *i > *ii
2.找出第一个小于 *i 的元素,令其为 *j,将*i,*j元素对调
3.将ii右端的所有元素颠倒
template <cl...
分类:
其他好文 时间:
2014-07-20 23:07:55
阅读次数:
286