赞
踩
- #include <iostream>
- #include <cstring>
- using namespace std;
- int main(){
- void sort(string *);
- int i;
- string str[10],*s;
- s=str;
- cout<<"输入十个等长的字符串:"<<endl;
- for(i=0;i<10;i++)
- cin>>str[i];
- sort(s);
- cout<<"比较之后:"<<endl;
- for(i=0;i<10;i++)
- cout<<str[i]<<endl;
- return 0;
-
- }
-
-
- void sort(string *s){
- string temp;
- int i,j;
- for(i=0;i<10;i++)//冒泡排序法
- for(j=0;j<10-i;j++)
- if(s[j]>s[j+1]){
- temp=s[j];
- s[j]=s[j+1];
- s[j+1]=temp;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。