设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 423|回复: 0
打印 上一主题 下一主题

数组交换

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 01:22:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
这是我写的关于交换两个数组内容的程序,贴上来大家帮我看看算法上有什么可以改进的,谢谢啦(不要将两个数组元素分别交换,因为当数组元素非常多时,效率就会很低)

// 数组交换.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<conio.h>
#include<iomanip>
using namespace std;

int main()
{
    const int N=5;
    const int M=4;
    int *a=new int[N];
    int *b=new int[M];
    int *temp;


    for(int i=0;i<N;i++)  a[i]=i;

    for(int i=0;i<M;i++)  b[i]=i*2;

    cout<<"原来的A为:"<<endl;
    for(int i=0;i<N;i++)
            cout<<setw(5)<<a[i]<<" ";
   
    cout<<endl;
    cout<<"原来的B为:"<<endl;
    for(int i=0;i<M;i++)
           cout<<setw(5)<<b[i]<<" ";
  
    cout<<endl;

    temp=a;
    a=b;
    b=temp;

    cout<<"现在的A为:"<<endl;
    for(int i=0;i<M;i++)
    {
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 23:28 , Processed in 0.110501 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表