알고리즘/C++
[C++]꿀팁 1탄 _ 헤더파일 .h /#include <bits/stdc++.h>
셉인
2022. 9. 21. 21:59
728x90
#include <bits/stdc++.h>
해당 헤더파일에 대해 낯설게 느껴지시는 분들이 있으실 것이다.
하지만 이 헤더파일을 꽤나 효자스럽다.
우리가 자주 쓰는 #include <iostream>, #include<algorithm> 뿐만 아니라 다양한 헤더파일을 포함하고 있는 헤더파일이라고 생각하면 된다.
그래서 여러줄 쓰지 않고 #include <bits/stdc++.h>한줄만 쓰면 편리하게 쓸 수 있다.
<단점>
#include <iostream>
#include <algorithm>
을 쓰는 것보다
#include <bits/stdc++.h>을 쓰는게 훨씬 느리다..
시간 초과 나옴
728x90