偶记


私信TA

用户名:233677

访问量:206

签 名:

投递员

等  级
排  名 12560
经  验 969
参赛次数 0
文章发表 1
年  龄 19
在职情况 学生
学  校 学院
专  业

  自我简介:

TA的其他文章

不用链表合并
浏览:50

参考代码:

#include<iostream>

#include<map>

#include<vector>

#include<algorithm>


using namespace std;


map<int, int> ma;

typedef struct node

{

int data1;

int data2;

struct node* next;

}node;


int main()

{

int a, b, c;

cin >> a >> b;

c = a + b;

node* head = new node();

head->next = NULL;

node* last = head;

while (c--)

{

cin >> a >> b;

ma[a] = b;

}

vector<pair<int, int>> ne(ma.begin(), ma.end());

sort(ne.begin(), ne.end());

for (auto i = ne.begin(); i != ne.end(); i++)

{

node* temp = new node();

temp->next = NULL;

temp->data1 = i->first;

temp->data2 = i->second;

last->next = temp;

last = temp;

}

head = head->next;

while (head != NULL)

{

cout << head->data1 <<" " << head->data2 << endl;

head = head->next;

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »