欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > c/c++ >内容正文

c/c++

scanf函数和cin的区别、类的数组、C++排序函数

发布时间:2025/4/5 c/c++ 32 豆豆
生活随笔 收集整理的这篇文章主要介绍了 scanf函数和cin的区别、类的数组、C++排序函数 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

给定n个字符串,将这n个字符串按照字典序进行排列,此处用排列函数是C++的库函数sort,产生如下两个疑问,望大佬解答

#include <iostream> #include <algorithm> #include <string> #include <vector>using namespace std; /* ********************************************** Q1:为什么定义类的数组,无法用sort函数排序呢? 会出现数组越界的情况,求解答 ********************************************* int main() {string str[1000];int n;scanf("%d",&n);for(int i = 0;i < n;i++){scanf("%s",str+i);str[i] = str[i] +'\0';}sort(str,str+n-1);for(int i =0;i < n;i++)printf("%s\n",str+i);return 0; } ********************************************** */ /* 以下代码正常运行 */ int main() {vector<string> str;string newstr;int n;scanf("%d",&n);for(int i = 0;i < n;i++){cin>>newstr;//scanf("%s",newstr); //Q2:这里用scanf进行读取输入,为什么会出错呢? str.push_back(newstr);}sort(str.begin(),str.end());for(int i =0;i < n;i++)cout<<str[i]<<endl;return 0; }

 

转载于:https://www.cnblogs.com/qiang-wei/p/9363469.html

总结

以上是生活随笔为你收集整理的scanf函数和cin的区别、类的数组、C++排序函数的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。