C++编程:如何编写一个递归函数,输出vector对象的内容
想不明白的一点是函数的形参应该用什么,原型中用vector<string>做形参的话,递归时用什么做参数呢?递归只能传递迭代器或指针了,但那又无法转换成vector<st...
想不明白的一点是函数的形参应该用什么,原型中用vector<string>做形参的话,递归时用什么做参数呢?递归只能传递迭代器或指针了,但那又无法转换成vector<string>了,迷惑了。
我写的一个函数:
void shuchu(vector<string>a)
{
auto beg=a.begin();
static auto end=a.end();
cout<<*beg;
if(beg!=end)
shuchu((++beg));//(*)
return;
}
编译时(*)显示无法进行类型转换 展开
我写的一个函数:
void shuchu(vector<string>a)
{
auto beg=a.begin();
static auto end=a.end();
cout<<*beg;
if(beg!=end)
shuchu((++beg));//(*)
return;
}
编译时(*)显示无法进行类型转换 展开
5个回答
展开全部
void print_vec(const vector<int> &v, int i)
{
if ( i == v.size()) return;
cout << v[i++] << " ";
print_vec(v, i);
}
{
if ( i == v.size()) return;
cout << v[i++] << " ";
print_vec(v, i);
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream>
#include<vector>
#include<string>
using namespace std;
void print_vec(const vector<string> &v)
{
static int i = 0;
if (i == v.size()) return;
cout << v[i++] << " ";
print_vec(v);
}
int main()
{
vector<string>a;
string temp;
while (cin >> temp)
{
a.push_back(temp);
}
print_vec(a);
return 0;
}
#include<vector>
#include<string>
using namespace std;
void print_vec(const vector<string> &v)
{
static int i = 0;
if (i == v.size()) return;
cout << v[i++] << " ";
print_vec(v);
}
int main()
{
vector<string>a;
string temp;
while (cin >> temp)
{
a.push_back(temp);
}
print_vec(a);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
遍历vector,然后输出?这个不能用递归做,会栈溢出的.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <vector>
using std::vector; using std::cout;
using Iter = vector<int>::const_iterator;
void print(Iter first, Iter last)
{
if (first != last)
{
cout << *first << " ";
print(++first, last);
}
}
int main()
{
vector<int> vec{ 1, 2, 3, 4, 5, 6, 7, 8, 9 };
print(vec.cbegin(), vec.cend());
return 0;
}
#include <vector>
using std::vector; using std::cout;
using Iter = vector<int>::const_iterator;
void print(Iter first, Iter last)
{
if (first != last)
{
cout << *first << " ";
print(++first, last);
}
}
int main()
{
vector<int> vec{ 1, 2, 3, 4, 5, 6, 7, 8, 9 };
print(vec.cbegin(), vec.cend());
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询