自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

桀骜不逊

不积跬步无以至千里

  • 博客(7)
  • 资源 (5)
  • 收藏
  • 关注

转载 <string.h>

转载自:http://blog.csdn.net/yzl_rex/article/details/7839379 通过在网站上的资料搜集,得到了很多关于string类用法的文档,通过对这些资料的整理和加入一些自己的代码,就得出了一份比较完整的关于string类函数有哪些和怎样用的文档了! 下面先罗列出string类的函数有哪一些,然后再罗列出函数的原型,最后到代码的实现 标准

2016-03-30 21:16:56 357

原创 判断三角形与圆是否相交

#include #include #include using namespace std; struct P { double x,y; }; struct circle { P c; double r; }; int cmp(double x) { if(fabs(x)<1e-15) return 0; if(x>0) return

2016-03-28 21:35:47 1564

原创 全排列permutation

dfs版: #include #include #include #include #include #include #define ll long long #define MAX 0x3f3f3f3f const ll MOD=1e+9+7; using namespace std; char c[10]; int s[10]; int book[10]; int len,min

2016-03-24 22:04:37 350

原创 dfs全排列

#include #include #include const int maxn=1000; int a[maxn],book[maxn],n,ans=0; void dfs(int step){ int i; if(step==n+1) { for(i=1;i<=n;i++) printf("%d ",a[i]); print

2016-03-24 15:11:49 487

原创 Dijkstra

51nod第一道基础题:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1459 最短路径加点权。 #include #include #include #include #define ll long long #define INF 9999 using namespace std; void dijkstra()

2016-03-23 20:36:51 337

原创 VECTOR

详解vector操作#include<iostream> #include<vector> #include<list> using namespace std; int main() { //1 vector<int> a; for(int i=0;i<10;i++){ a.push_back(i); } //2 int arr[6]

2016-03-15 15:15:29 322

转载 大数类

C++大数类模版#include<iostream> #include<string> #include<iomanip> #include<algorithm> using namespace std; #define MAXN 9999 #define MAXSIZE 10 #define DLEN 4class BigNum { private: int a[500];

2016-03-15 09:20:59 333

leetcode题目分类.txt

{"slug":"bit-manipulation","name":"Bit Manipulation","questions":[78,136,137,169,187,190,191,201,231,260,268,318,320,338,342,371,389,393,397,401,405,411,421,461,476,477,693,752,757,767,800,934,1189,1220,1230,1282,1360,1381,1411,1423,1435,1441,1444,1458,1520,1531,1553,1557,1568,1610,1632,1645,1668,1732,1826,1835,1839,1940,1965,100180,100181,100182,100183,100198,100230,100258,100292,100310,100349,1000025,1000032,1000038],"translatedName":"位运算"}

2021-06-19

IO_stack_of_the_Linux_kernel.svg

linux架构图。 The Linux Storage Stack Diagramversion 4.0, 2015-06-01outlines the Linux storage stack as of Kernel version 4.0 SCSI low level drivers megaraid_sas aacraid qla2xxx ...

2020-02-19

蓝桥杯历届题目和测试数据(oj建设题库)

里面是蓝桥杯的一些历届比赛题目,答案,以及测试数据。 可用来个人练习,参考;因为有测试数据,也可以输入到您自己的oj系统里面,补充题库,或者作为出题的参考。 http://www.lanqiao.org/ 关于蓝桥 蓝桥网是一个帮助泛IT领域人士学习、就业及职业成长的立体式、综合性服务平台。平台业务主要由蓝桥学院、蓝桥杯大赛、蓝桥招聘、蓝保等服务组成,构建起从学校到职场、从线下到线上的泛IT领域人才学习及职业生涯助力系统,服务于泛IT领域人才的成长。 蓝桥愿景 连接高校和社会 蓝桥文化 立人达人,大道至拙 蓝桥宗旨 教育的目的不是人才,而是人生

2020-02-19

ecdsa-0.13.tar.gz

ecdsa-0.13版,paramiko依赖包

2017-07-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除