资源简介
用c++做的例子,利用指针数组冒泡法排序
代码片段和文件信息
// pointArr.cpp : 定义控制台应用程序的入口点。
//
#include “stdlib.h“
#include “stdafx.h“
#include “iostream“
#include “string“
using namespace std;
int _tmain(int argc _TCHAR* argv[])
{
string text;
const string separators=“.\“\n“;
const int max_words=5;
string words[5]={“hset““uwt““btet““cwte““atet“};
string* pwords[max_words];
int word_count=0;
while(word_count pwords[word_count]=&words[word_count];
word_count++;
}
for(int j=0;j for(int i=0;i if((*pwords[i]).substr(01)>(*pwords[i+1]).substr(01))
{
string* ptemp=pwords[i];
pwords[i]=pwords[i+1];
pwords[i+1]=ptemp;
}
}
}
for(int i=0;i cout< system(“pause“);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6020 2011-12-09 11:01 pointArr\Debug\BuildLog.htm
文件 67 2011-12-09 11:01 pointArr\Debug\mt.dep
文件 45056 2011-12-09 11:01 pointArr\Debug\pointArr.exe
文件 403 2011-12-09 10:09 pointArr\Debug\pointArr.exe.em
文件 468 2011-12-09 10:09 pointArr\Debug\pointArr.exe.em
文件 385 2011-12-09 11:01 pointArr\Debug\pointArr.exe.intermediate.manifest
文件 341168 2011-12-09 11:01 pointArr\Debug\pointArr.ilk
文件 33672 2011-12-09 11:01 pointArr\Debug\pointArr.obj
文件 1048576 2011-12-09 10:09 pointArr\Debug\pointArr.pch
文件 551936 2011-12-09 11:01 pointArr\Debug\pointArr.pdb
文件 10553 2011-12-09 10:09 pointArr\Debug\stdafx.obj
文件 175104 2011-12-09 11:01 pointArr\Debug\vc80.idb
文件 241664 2011-12-09 11:01 pointArr\Debug\vc80.pdb
文件 818 2011-12-09 11:01 pointArr\pointArr.cpp
文件 1002496 2011-12-09 14:27 pointArr\pointArr.ncb
文件 880 2011-12-09 10:03 pointArr\pointArr.sln
..A..H. 7680 2011-12-09 14:27 pointArr\pointArr.suo
文件 4490 2011-12-09 10:03 pointArr\pointArr.vcproj
文件 1427 2011-12-09 14:27 pointArr\pointArr.vcproj.WWW-E26AC25E5A8.Administrator.user
文件 956 2011-12-09 10:03 pointArr\ReadMe.txt
文件 213 2011-12-09 10:03 pointArr\stdafx.cpp
文件 276 2011-12-09 10:03 pointArr\stdafx.h
目录 0 2011-12-09 11:01 pointArr\Debug
目录 0 2011-12-09 11:01 pointArr
----------- --------- ---------- ----- ----
3474308 24
- 上一篇:dijkstra算法C++实现
- 下一篇:DLT645-97/07报文解释器VC源码
相关资源
- dijkstra算法C++实现
- C++test v6.0.0.5破解版3
- 操作系统 C++ 页面置换算法含实验报告
- TelBook.cpp通讯录课程设计
- 声卡数据采集播放演示源程序vc.zip
- 向量类的设计与实现 VC++6.0
- KLT算法c++实现
- RSA加解密源码VC++实现
- mfc实现画图板源码+实验报告
- libstdc++-libc6.2-2.so.3.tar.gz
- C++ OOP实现贪吃蛇,EASYX图形界面
- c++ primer 第五版 中文版 源代码
- c++函数模板和类模板计实验报告
- c++试题哈工大
- 教室信息管理系统
- C++面向对象程序设计2007龚晓庆
- 酒店管理系统源码完整版C++
- C++大作业之员工管理系统
- DAA算法 VC++实现 画线
- 模糊c均值聚类+FCM算法的c++代码
- 数据结构C++版课后题答案
- C++公司人事管理课程设计
- 调节系统音量调节麦克风音量
- 最长公共子序列—c++实现
- C++最小二乘法拟合直线
- c++primerplus(第六版)课后编程练习答
- 多元线性回归c++算法
- 远程桌面(带C++源码)
- n个数冒泡排序法
- 24点算法 C++实现
评论
共有 条评论