1、冒泡排序(自己写) #include#define swap(x,y) x=x+y; y=x-y;
x=x-y;void maopao(int *a,int length)
//每次把最大的元素冒泡到数组末尾,从小到大的顺序,length是数组长度,a是数组名,作为形参之后,数组名退化为指针{ ...
分类:
其他好文 时间:
2014-05-27 23:59:27
阅读次数:
434
Windows Server Failover Clustering is a high
availability platform that is constantly monitoring the network connections and
health of the nodes in a ...
分类:
其他好文 时间:
2014-05-27 23:48:23
阅读次数:
550
1、使用free – m命令查看内存使用情况代码如下:total used free shared
buffers cached Mem: 3832 2716 1115 0 95 1483 -/+ buffers/cache: 1137 2695 Swap:
6015 0 6015从上面可以看到内存...
分类:
其他好文 时间:
2014-05-26 11:57:51
阅读次数:
295
FREENAMEfree显示系统可用内存和已使用内存语法free [-b | -k | -m]
[-o] [-s delay ] [-t] [-l] [-V]描述free显示了总可用和被用的物理内存和swap内存,也包括内核使用的buffer,shared
memory已经被废弃选项[-b | -k...
分类:
系统相关 时间:
2014-05-26 11:29:08
阅读次数:
326
Given a linked list and a value x, partition it
such that all nodes less than x come before nodes greater than or equal to x.You
should preserve the o...
分类:
其他好文 时间:
2014-05-26 09:35:28
阅读次数:
266
概述
现在用的操作系统是Win8.1,用VMware创建一个虚拟机,3G内存(物理内存是6G,分一半),23G硬盘,其中3G用于swap分区,10G用于host
system,10G用于建立LFS系统。 创建虚拟机 使用VMware7.1.2创建一个虚拟机,硬盘23G,内存3G。 硬盘分区 分3个区...
分类:
系统相关 时间:
2014-05-25 23:09:49
阅读次数:
479
You are given two linked lists representing two non-negative numbers. The digits are
stored in reverse order and each of their nodes contain a single digit. Add the two numbers
and return i...
分类:
其他好文 时间:
2014-05-25 21:36:52
阅读次数:
268
最近安装了ubuntu14.04,安装时一般分三个区/,/swap和/home,具体/大小为10G-15G,/swap是内存大小的两倍,比如,我的内存是2G,那么/swap就是4G,剩下的给/home。
我的是用U盘安装,用的工具是 简单配置了一下:universial usb instal...
分类:
其他好文 时间:
2014-05-25 14:14:52
阅读次数:
250
经验:确保当对象自我赋值时operator=有良好行为。其中技术包括比较“来源对象”和“目标对象”的地址、精心周到的语句顺序、以及copy-and-swap。...
分类:
编程语言 时间:
2014-05-25 09:53:27
阅读次数:
233
http://poj.org/problem?id=3013
题意:
Because of a technical difficulty, price of an edge will be (sum of weights of all descendant nodes) × (unit price of the edge).这句话一直没看懂。后面还以为是最小生成树。
正确...
分类:
其他好文 时间:
2014-05-24 20:27:13
阅读次数:
266