• 大小: 1.35KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: 排序  

资源简介

c++ 数组冒泡排序 示例代码

资源截图

代码片段和文件信息

#include
#include“bubblearray.h“
using namespace std;

bubblearray::bubblearray(int *cint d){
n=d;  
p=c;
}

void bubblearray::swap(int *aint *b){  //使用指针可改变实参值
int temp=*a;
*a=*b;
*b=temp;
}

void bubblearray::sort(){
     for(int i=0;i  for(int j=0;j  if(p[j]>p[j+1])
 swap(&p[j]&p[j+1]);   //需加上取地址符
}

void bubblearray::print(){
for(int i=0;i { cout<}

bubblearray::~bubblearray(){
delete[] p;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-06-03 17:55  数组冒泡排序\
     文件         515  2014-10-21 16:20  数组冒泡排序\bubblearray.cpp
     文件         278  2014-10-21 16:19  数组冒泡排序\bubblearray.h
     文件         258  2014-10-21 16:21  数组冒泡排序\main.cpp

评论

共有 条评论