Q1143316492
Q1143316492
全部文章
分类
未归档(115)
归档
标签
去牛客网
登录
/
注册
Q1143316492的博客
全部文章
(共115篇)
sublime安装配置
https://packagecontrol.io/installation 1 import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0e...
2017-05-13
0
491
java基础复习+大数运算
String: Array: 下面分别是大数加法,加法,乘法,取模
2017-05-07
0
481
Linux 新系统个人配置
1,装codeblocks 2,装vim,检查gcc,g++,修改vim环境 cd ~vim .vimrc添加如下几行:set shiftwidth=4 (表示每一级缩进的长度)set softtabstop=4 (表示在编辑模式的时候按退格键的时候退回缩进的...
linux
2017-05-01
0
488
topsort
第一道拓扑 /** HDU 1285 拓扑 A->B直接建图AC代码 */ #include <cstdio> #include <iostream> #include <algorithm> #include <cstring...
2017-04-13
0
507
最小生成树模板
http://acm.fjut.edu.cn/Problem.jsp?pid=1545 FJUTOJ 1545 Prim 1 #include <cstdio> 2 #include <cstring> 3 #include <algo...
2017-04-06
0
439
没地方存代码系列————一堆最短路
http://59.77.139.92/Problem.jsp?pid=1499 FJUTOJ 1499 直接建图求s到T的最短路就可以了。 Floyd 1 #include <bits/stdc++.h> 2 3 using namespace...
最短路
2017-04-03
0
475
背包DP入门小笔记01背包
FJUT OJ 2347 http://59.77.139.92/Problem.jsp?pid=2347 采药 TimeLimit:1000MS MemoryLimit:128MB 64-bit integer IO format: %lld ...
acm
dp
2017-03-20
0
556
c++模板编程
#include <cstdio> #include <algorithm> #include <cstdio> #include <cstring> #include <iostream> #include <vector> ...
c/c++
2017-02-26
0
470
C/C++知识大纲(只有作者看得懂的笔记)
c标准库部分冷门函数。 stdio.h char buf[256]; sscanf(buf,"%s",&buf); sprintf(buf,"Name: %s","xxx"); math.h ce...
c/c++
2017-02-25
0
723
双向链表笔记
双向链表增删,准备未来复习自己用 #include <bits/stdc++.h> using namespace std; typedef struct node { int data; struct node *next,*pre; }NODE; /...
数据结构
链表
2017-02-13
0
424
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页