码迷,mamicode.com
首页 >  
搜索关键字:swap 云服务器    ( 6698个结果
快速排序
void quickSort(int *a1 , int *a2){ int i=0 , j=a2-a1-1; if (i>=j) return; swap(a1[0] , a1[rand()%j+1]); while( ia1[0]) --j; if(i<j)...
分类:其他好文   时间:2014-05-19 07:43:47    阅读次数:213
使用引用交换两个数字
#include using namespace std; //定义一个函数,用于交换两个变量的值 void swap(int &a, int &b); void main() { int i = 3, j = 5; cout<<"交换前:i="<<i<<" j="<<j<<endl; swap(i,j); cout<<"交换后:i="<<i<<" j="<<j<<endl;...
分类:其他好文   时间:2014-05-18 16:05:54    阅读次数:209
LeetCode: Swap Nodes in Pairs [023]
【题目】 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. You may not modify the values in the list, only nodes it...
分类:其他好文   时间:2014-05-18 08:37:57    阅读次数:370
阿里云linux服务器安装Apache
发布时间:2013-06-18 编辑:thatboy本文介绍下,在阿里云的linux服务器上,安装apache的简单方法,供大家参考。随着阿里云主机的火热推出,很多的站长朋友,也开始使用阿里云服务器了。php程序,大多还是要跑在linux系统的主机上的。今天,介绍下在阿里云的linux主机上安装a....
分类:系统相关   时间:2014-05-17 18:47:34    阅读次数:418
模板具体化
#ifndef SWAP_H_INCLUDED#define SWAP_H_INCLUDED#include using namespace std;struct Job{ string name; int salary;};template void Swap(T &a, T &b);...
分类:其他好文   时间:2014-05-16 01:14:38    阅读次数:340
扩充swap分区大小
#1.建议在opt下面操作,我的opt是一个单独分区,创建一个swap的文件夹 cd/opt mkdirswap #2.创建一个2GB大小的文件 ddif=/dev/zeroof=swapfilebs=1024count=2048000 #3.转换激活swap分区 mkswapswapfile swaponswapfile #4.查看扩充后的大小 free-m #5.写入/etc/fstab文件,在..
分类:其他好文   时间:2014-05-15 18:46:17    阅读次数:256
wordpress安装(ubuntu+nginx+php+mariadb)
一、环境ubuntu12.04.4nginx 1.6.0mariadb 10.0更新系统补丁sudo apt-get updatesudo apt-get dist-upgrade -y挂载swap分区dd if=/dev/zeroof=/media/fasthdd/swapfile.img bs=...
分类:数据库   时间:2014-05-15 17:23:21    阅读次数:1622
Leetcode 线性表 Swap Nodes in Pairs
题意:交换给定链表中的相邻节点,但不可以改变链表里的值 如1->2->3->4交换后为2->1->4->3 思路: 按题意中的扫描去改变每两个相邻节点的next指针的指向即可。 小技巧: 因为处理每两个相邻节点的时候,需要一个指针记录它们前一个节点,而头节点前面没有节点, 所以可设置一个dummy节点指向头指针,这样开头的两个节点的处理方式跟其它的相邻节点的处理方式就一样了 复杂度:时间O(n),空间O(1)...
分类:其他好文   时间:2014-05-15 00:16:00    阅读次数:359
Objective C - 与Android交互时高低位转换:
在与Android交互过程中,因为Android是从低位往高位读,iOS是从高位往低位读,所以交互数据需要进行转换。 /* * convert big endian to little endian in C */ uint16_t swap_uint16( uint16_t val ); int16_t swap_int16( int16_t val ); uint32_t s...
分类:移动开发   时间:2014-05-14 21:38:51    阅读次数:407
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!