求助C++ vector<string>传值问题

#include<iostream>#include<string>#include<vector>usingnamespacestd;intmain(){intGetM... #include <iostream>
#include <string>
#include<vector>
using namespace std;

int main()
{
int GetMax(***************, int n);//??????????
vector<string>s;
string str;

int Key_Number;
cout << "你输入字符串数:";
cin >> Key_Number;
int i = 0;
for (i = 0; i < Key_Number; i++)
{
cout << "请输入第" << i + 1 << "个字符串:";
cin >> str;
s.push_back(str);
}

GetMax(**************, Key_Number - 1);//如何将s多个字符串传入GetMax;

cout << "最长的字符串是:" << s[0];
getchar();
getchar();
return 1;
}

int GetMax(***********, int n)//???????????
{
if (n == 0) return n;
else
{
if (t[n].length() > t[n - 1].length())
t[n].swap(t[n - 1]);
return GetMax(t, n - 1);
}
}

能不能把s里的n个字符串传入Getmax?
如何传入??????
展开
 我来答
wchyumo2011
推荐于2016-11-30 · TA获得超过2万个赞
知道大有可为答主
回答量:5810
采纳率:79%
帮助的人:2820万
展开全部

直接使用vector<string>类型或者其引用类型即可,如下:

#include <iostream>
#include <string>
#include<vector>
using namespace std;

int main()
{
int GetMax(vector<string >&t, int n);//??????????
vector<string>s;
string str;

int Key_Number;
cout << "你输入字符串数:";
cin >> Key_Number;
int i = 0;
for (i = 0; i < Key_Number; i++)
{
cout << "请输入第" << i + 1 << "个字符串:";
cin >> str;
s.push_back(str);
}

GetMax(s, Key_Number - 1);//如何将s多个字符串传入GetMax;

cout << "最长的字符串是:" << s[0];
getchar();
getchar();
return 1;
}

int GetMax(vector<string >&t, int n)//???????????
{
if (n == 0) return n;
else
{
if (t[n].length() > t[n - 1].length())
t[n].swap(t[n - 1]);
return GetMax(t, n - 1);
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式