想使用C++标准链表,但是链表的每个结点有4个int类型的变量,问一下有什么方法

C++语言 码拜 9年前 (2016-04-06) 1015次浏览
想使用C++标准链表,但是链表的每个结点有4个int类型的变量,问一下有什么方法
解决方案

5

每个节点都是一个struct
struct hello
{
int world1;
int world2;
int world3;
int world4;
};

5

用结构体包装一下啊.想使用C++标准链表,但是链表的每个结点有4个int类型的变量,问一下有什么方法

5

std::tuple<int,int,int,int> tp
想使用C++标准链表,但是链表的每个结点有4个int类型的变量,问一下有什么方法

40

#include<iostream>
#include<list>
using namespace std;
struct Time{
	int t0;
	int t1;
	int t2;
	int t3;
}
void main()
{
	Time t1, t2;
	std::list<Time> mylist;
	mylist.push_back(t1);
	mylist.push_back(t2);
}

5

引用:
#include<iostream>
#include<list>
using namespace std;
struct Time{
	int t0;
	int t1;
	int t2;
	int t3;
}
void main()
{
	Time t1, t2;
	std::list<Time> mylist;
	mylist.push_back(t1);
	mylist.push_back(t2);
}

感觉少一个分号想使用C++标准链表,但是链表的每个结点有4个int类型的变量,问一下有什么方法


CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明想使用C++标准链表,但是链表的每个结点有4个int类型的变量,问一下有什么方法
喜欢 (0)
[1034331897@qq.com]
分享 (0)