1097. Deduplication on a Linked List (25)

考察各类STL,没什么难度node #include <iostream> #include <stdio.h> #include <list> #include <map> #include <vector> using namespace std; struct linkedlist{ int address,next,key; }; map<int,int> table; list
相关文章
相关标签/搜索