swap函数
存在于algorithm中的一个交换函数:
[cpp]
// swap algorithm example (C++98)
#include <iostream>
#include <algorithm>
int main ()
{
int x=10, y=20; // x:10 y:20
std::swap(x,y); // x:20 y:10
std::cout<<x<<” “<<y<<std::endl;
return 0;
}
[/cpp]
存在于algorithm中的一个交换函数:
[cpp]
// swap algorithm example (C++98)
#include <iostream>
#include <algorithm>
int main ()
{
int x=10, y=20; // x:10 y:20
std::swap(x,y); // x:20 y:10
std::cout<<x<<” “<<y<<std::endl;
return 0;
}
[/cpp]
3 Replies to “swap函数”
来学习一下,好棒的博客
看看!!支持
博主是技术派啊,话说我没看懂。。。不过我支持博主一个!