c++中vector<string>可以存放什么数据

 我来答
娱乐小八卦啊a
高粉答主

2020-05-16 · 娱乐小八卦,天天都知道
娱乐小八卦啊a
采纳数:256 获赞数:117823

向TA提问 私信TA
展开全部

利用C++做信号处理方面的仿真,于是就涉及到了大量数据的存储。由于在读取数据的时候,并不知道数据的长度,这时候,vector就很好用了,因为vector容器不用知道数组的长度。

编写程序读入一组string类型的数据,并将它们存储在vector中,接着,把该vector对象复制给一个字符指针数组。为vector中的每个元素创建一个新的字符数组,并把该vector元素的数据复制到相应的字符数组中,最后把指向该数组的指针插入字符指针数组。

扩展资料

vector拷贝使用总结

1、利用拷贝赋值操作符(深复制)

vector<int> array{3,5,2,6,4};

vector<int> outArray;

outArray = array;

2、利用拷贝构造(深复制)

vector<int> array{3,5,2,6,4};

vector<int> outArray(array);

3、利用swap()函数(交换两个vector)

会清空原vector数组

vector<int> array{3,5,2,6,4};

vector<int> outArray;//设为空

outArray.swap(array);//清空array数组

TableDI
2024-07-18 广告
当我们谈到Python与Excel的拆分时,通常指的是使用Python的库来读取Excel文件中的数据,然后根据某种逻辑(如按行、按列、按特定值等)将数据拆分成多个部分或输出到新的Excel文件中。上海悉息信息科技有限公司在处理这类任务时,... 点击进入详情页
本回答由TableDI提供
乐跑小子
推荐于2018-05-10 · TA获得超过1.5万个赞
知道大有可为答主
回答量:1.1万
采纳率:7%
帮助的人:4465万
展开全部
vector是c++标准库的一个容器,如果学过数据结构就知道有数组,线性表,链表之类各种东西,vector实际上就是数组。

string是c++标准库的字符串类型。

实例:
vector<string> what_string;
vector<string> hell_string;
vector<string> louzhu_string;
vector<string> shafa_string;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友7860c3e
2012-07-04 · TA获得超过241个赞
知道小有建树答主
回答量:199
采纳率:0%
帮助的人:116万
展开全部
你这这种定义 可以存放 string类型的 字符串 . vector<int>这样声明可以存整型。 还可以定义为自定义类型
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
anddygon
2012-07-04 · TA获得超过230个赞
知道小有建树答主
回答量:143
采纳率:0%
帮助的人:87.4万
展开全部
#include <iostream>
#include <vector>
#include <fstream>
#include <string>
#include <algorithm>
using namespace std;
class Student
{
public:
Student(){}
void write();
void red();
void show();
void sortScore();
int operator<(const Student&);
int a_bScore();
void deleteStudent();
private:
int id;
string name;
double score;
};
vector<Student> student;
void Student::write()
{
Student s;
char fileName[20];
cout<<"请输入文件名:"<<endl;
cin>>fileName;
ofstream out(fileName,ios::app);
cout<<"请输入学生学号姓名成绩:"<<endl;
vector<Student>::iterator iter;
while (cin>>s.id>>s.name>>s.score)
{
iter=student.begin();
while (iter!=student.end())
{
if (s.id==iter->id)
{
cout<<s.id<<"已经存在。"<<endl;
cout<<iter->id<<" "<<iter->name<<" "<<iter->score<<endl;
break;
}
else
iter++;
}
if (iter==student.end())
{
out<<s.id<<" "<<s.name<<" "<<s.score<<" ";
student.push_back(s);
}
}
cin.clear();
}
void Student::show()
{
vector<Student>::const_iterator iter=student.begin();
cout<<"学号\t姓名\t 成绩\t"<<endl<<endl;
while (iter!=student.end())
{
cout<<iter->id<<"\t"<<iter->name<<" \t"<<iter->score<<endl;
iter++;
}
}
void Student::red()
{
Student s;
char fileName[20];
cout<<"请输入文件名:"<<endl;
cin>>fileName;
ifstream in(fileName);
vector<Student>::iterator iter;
while (in>>s.id>>s.name>>s.score)
{
iter=student.begin();
while (iter!=student.end())
{
if (s.id==iter->id)
{
break;
}
else
iter++;
}
if (iter==student.end())
{
student.push_back(s);
}
}
cin.clear();
}
int Student::operator<(const Student&s)
{
return score>s.score?1:0;
}
void Student::sortScore()
{
sort(student.begin(),student.end());
}
int Student::a_bScore()
{
int a,b,low,up,cnt=0;
cout<<"请输入要查找的分数段:"<<endl;
cin>>a>>b;
if (a>b)
{
up=a;
low=b;
}
else
{
low=a;
up=b;
}
vector<Student>::const_iterator iter=student.begin();
while (iter!=student.end())
{
if (iter->score>=low&&iter->score<=up)
{
cout<<iter->id<<" "<<iter->name<<" "<<iter->score<<endl;
cnt++;
}
iter++;
}
return cnt;
}
void Student::deleteStudent()
{
Student s;
cout<<"请输入要删除的学生学号:"<<endl;
cin>>s.id;
vector<Student>::iterator iter=student.begin();
while (iter!=student.end())
{
if (iter->id==s.id)
{
break;
}
else
iter++;
if (iter!=student.end())
{
student.erase(iter);
cout<<"OK,"<<s.id<<"信息删除完毕。"<<endl;
}
else
{
cout<<"没找到学号为:"<<s.id<<"的学生信息,删除失败。"<<endl;
}
}
}
int main()
{
Student s;
int choice;
cout<<"=-=-=-=-=-=-=-=-=-=-=-=-=-=-欢迎使用学生信息管理系统-=-=-=-=-=-=-=-=-=-=-=-=-=-="<<endl;
begin:
cout<<"1->添加学生信息 2->显示学生信息 3->删除学生信息 "<<endl<<endl;
cout<<" 0-> 退出 "<<endl<<endl;
cout<<"4->从文件添加 5->按成绩排序 6->分数段信息查询"<<endl<<endl;

cin>>choice;
if (choice==1)
{
s.write();
system("cls");
goto begin;
}
else if (choice==2)
{
s.show();
system("pause");
system("cls");
goto begin;
}
else if (choice==3)
{
s.deleteStudent();
system("pause");
system("cls");
goto begin;
}
else if (choice==4)
{
s.red();
system("pause");
system("cls");
goto begin;
}
else if (choice==5)
{
s.sortScore();
system("pause");
system("cls");
goto begin;
}
else if (choice==6)
{
s.a_bScore();
system("pause");
system("cls");
goto begin;
}
else if (choice==0)
{
exit(0);
}
else
{
cout<<"输入非法!!!"<<endl;
system("pause");
goto begin;
}
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式