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
相關文章
相關標籤/搜索