首页 > 其他 > 详细

头文件

时间:2015-11-07 16:00:50      阅读:98      评论:0      收藏:0      [点我收藏+]
#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <stack>
#include <queue>
#include <cctype>
#include <cstdio>
#include <string>
#include <vector>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#define LL long long
typedef long long type;
#define PI 3.1415926535897932626
using namespace std;
//type gcd(type a, type b) {return b == 0 ? a : gcd(b, a % b);}
int gcd(int a, int b) {return a % b == 0 ? b : gcd(b, a % b);}

 

头文件

原文:http://www.cnblogs.com/Commence/p/4944997.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!