
模版
神探特斯拉
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
白书练习 高进度类编写
// // main.cpp // 高精度运算类bign // // Created by 张嘉韬 on 16/1/28. // Copyright © 2016年 张嘉韬. All rights reserved. // #include #include using namespace std; const int maxn=1000; struct bign { int原创 2016-01-29 00:10:48 · 362 阅读 · 0 评论 -
HDOJ 1040 As Easy As A+B
Problem Description These days, I am thinking about a question, how can I get a problem as easy as A+B? It is fairly difficulty to do such a thing. Of course, I got it after many waking nights. Gi原创 2016-03-15 11:58:33 · 403 阅读 · 0 评论 -
UVa 156 (stl map的使用)
一。map map就是从键(key)到值(value)的映射,重载了[]所以可以认为是高级版的数组,常用的一些操作如下: 头文件:#include 定义:map name key称为map的frist,value称为map的second。 初始化:name.clear(); 二.题目 Ananagrams Most crossword puzzl原创 2016-05-09 21:10:46 · 1033 阅读 · 0 评论