리스트
-
백준 2605번 : 줄 세우기리스트(List) 2018. 6. 17. 11:14
https://www.acmicpc.net/problem/2605 1. 문제 요약 입력받은 정수로 임의 접근하여 원소를 삽입 하는 문제 2. 알고리즘 자료구조 List 임의 접근을 사용하여 해결. 3. 코드 123456789101112131415161718192021222324252627282930313233343536#include #include #include #include #include #include using namespace std; int main() { std::ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; list arr; list::iterator iter; for(int i=1; i> cand; for(iter = arr...