求助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?
如何传入?????? 展开
#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?
如何传入?????? 展开
展开全部
直接使用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);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询