自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

迪迦 • 奥特曼

你还相信光吗?

  • 博客(100)
  • 资源 (13)
  • 收藏
  • 关注

原创 map-constructors

////////////////////////////////////////// 2018/04/30 11:55:43// map-constructors#include <iostream>#include <map>using namespace std;int main(){ typedef map<int,...

2018-04-30 12:22:55 265

原创 multiset-insert

////////////////////////////////////////// 2018/04/30 11:45:49// multiset-insert// insert element into the multiset#include <iostream>#include <set>using namespace std;...

2018-04-30 12:22:25 395

原创 multiset-find

////////////////////////////////////////// 2018/04/30 11:36:02// multiset-find// find a given element#include <iostream>#include <set>#include <iomanip>#include &lt...

2018-04-30 12:21:57 621

原创 multiet-erase

////////////////////////////////////////// 2018/04/30 11:30:09// multiet-erase// removes elemeents#include <iostream>#include <set>using namespace std;void print(multi...

2018-04-30 12:21:26 117

原创 multiset-end

////////////////////////////////////////// 2018/04/30 9:26:40// multiset-end//returns an iterator to the last element#include <iostream>#include <set>#include <iomanip...

2018-04-30 09:37:19 261

原创 multiset-empty

////////////////////////////////////////// 2018/04/30 8:54:15// multiset-empty// true if multiset is empty#include <iostream>#include <set>using namespace std;void prin...

2018-04-30 09:36:48 175

原创 multiset-count

////////////////////////////////////////// 2018/04/30 8:50:14// multiset-count// returns the number of elements#include <iostream>#include <set>using namespace std;void...

2018-04-30 09:36:15 432

原创 multiset-clear

////////////////////////////////////////// 2018/04/30 8:45:39// multiset-clear// removes all elements#include <iostream>#include <set>using namespace std;void print(mul...

2018-04-30 09:35:46 262

原创 multiset-begin

////////////////////////////////////////// 2018/04/29 17:00:21// multiset-begin// returns an iterator to the first element#include <iostream>#include <set>#include <alg...

2018-04-30 08:26:08 310

原创 multiset-constructors

////////////////////////////////////////// 2018/04/29 16:49:12// multiset-constructors#include <iostream>#include <set>#include <functional>using namespace std; i...

2018-04-29 17:05:05 151

原创 set-value_comp

////////////////////////////////////////// 2018/04/29 16:28:16// set-value_comp// returns the function that compares values#include <iostream>#include <set>#include <fu...

2018-04-29 17:04:32 525

原创 set-upper_bound

////////////////////////////////////////// 2018/04/29 15:33:59// set-upper_bound// returns an iterator to the first element greater than a certain value#include <iostream>#inclu...

2018-04-29 15:48:50 1443

原创 set-swap

////////////////////////////////////////// 2018/04/29 15:25:15// set-swap// exchange two sets#include <iostream>#include <set>#include <algorithm>#include <itera...

2018-04-29 15:48:16 411

原创 set-key_comp

////////////////////////////////////////// 2018/04/29 7:42:27// set-key_comp// return the function that compares keys#include <iostream>#include <set>using namespace std;...

2018-04-29 08:53:55 661

原创 set-size

////////////////////////////////////////// 2018/04/29 8:43:56// set-size// the number of elements in the set#include <iostream>#include <set>using namespace std;void pr...

2018-04-29 08:52:11 416

原创 set-rend

////////////////////////////////////////// 2018/04/29 8:43:34// set-rend// returns a reverse iterator to the begining of the set#include <iostream>#include <set>#include &...

2018-04-29 08:51:43 242

原创 set-rebgin

////////////////////////////////////////// 2018/04/29 8:19:52// set-rebgin// returns reverse iterator to the end of the set#include <iostream>#include <set>#include <io...

2018-04-29 08:51:15 181

原创 set-max_size

////////////////////////////////////////// 2018/04/29 8:14:44// set-max_size// the maximun number of elements that the set can hold#include <iostream>#include <set>#includ...

2018-04-29 08:50:39 447

原创 set-lower_bound

////////////////////////////////////////// 2018/04/28 19:23:07// set-lower_bound// return an iterator to the first element greater than a certain value#include <iostream>#include...

2018-04-28 19:44:32 491

原创 set-insert

////////////////////////////////////////// 2018/04/28 19:04:02// set-insert// insert elements into the set#include <iostream>#include <set>using namespace std;void prin...

2018-04-28 19:44:03 528

原创 set-find

////////////////////////////////////////// 2018/04/28 18:53:08// set-find// find a given element#include <iostream>#include <set>#include <iomanip>#include <stri...

2018-04-28 19:43:27 1088

原创 set-erase

////////////////////////////////////////// 2018/04/28 14:33:26// set-erase// removes elements#include <iostream>#include <set>using namespace std;void print(set<int,...

2018-04-28 14:43:13 466

原创 set-equal_range

////////////////////////////////////////// 2018/04/28 14:04:28// set-equal_range#include <iostream>#include <set>using namespace std;int main(){ set<int> c; ...

2018-04-28 14:42:43 492

原创 set-end

////////////////////////////////////////// 2018/04/28 13:53:14// set-end// returns an iterator to the last element#include <iostream>#include <set>#include <iomanip>...

2018-04-28 14:42:13 445

原创 set-empty

////////////////////////////////////////// 2018/04/28 13:45:21// set-empty// ture if set is empty#include <iostream>#include <set>using namespace std;void print(set<...

2018-04-28 14:41:43 232

原创 set-count

////////////////////////////////////////// 2018/04/28 13:32:07// set-count// returns the number of elements#include <iostream>#include <set>using namespace std;void pri...

2018-04-28 14:41:15 2368 1

原创 set-clear

////////////////////////////////////////// 2018/04/28 9:02:40// set-clear// removes all elements#include <iostream>#include <set>#include <functional>using namespa...

2018-04-28 09:11:31 414

原创 set-begin

////////////////////////////////////////// 2018/04/28 8:58:55// set-begin// return an iterator to the first element#include <iostream>#include <set>#include <iterator&g...

2018-04-28 09:11:00 310

原创 set-constructors

////////////////////////////////////////// 2018/04/27 19:43:54// set-constructors#include <iostream>#include <set>#include <functional>using namespace std;int main...

2018-04-27 19:58:40 123

原创 list-unique

////////////////////////////////////////// 2018/04/27 16:45:26// list-unique// removes duplicate elements#include <iostream>#include <list>#include <algorithm>#incl...

2018-04-27 17:11:41 594

原创 list-swap

////////////////////////////////////////// 2018/04/27 16:20:26// list-swap// exchange two lists#include <iostream>#include <list>#include <algorithm>#include <nu...

2018-04-27 17:11:08 1034

原创 list-splice

////////////////////////////////////////// 2018/04/27 11:09:23// list-splice// merge two lists#include <iostream>#include <list>#include <algorithm>#include <ite...

2018-04-27 11:32:04 411

原创 list-sort2

////////////////////////////////////////// 2018/04/27 7:36:05// list-sort2// sorts with user datatype#include <iostream>#include <iomanip>#include <list>#include &l...

2018-04-27 11:31:30 162

原创 list-sort1

////////////////////////////////////////// 2018/04/27 7:26:06// list-sort1// sorts the list#include <iostream>#include <list>#include <algorithm>#include <functi...

2018-04-27 07:46:10 158

原创 list-size

////////////////////////////////////////// 2018/04/27 7:22:00// list-size#include <iostream>#include <list>#include <algorithm>#include <iterator>using names...

2018-04-27 07:45:33 550

原创 list-reverse

////////////////////////////////////////// 2018/04/27 7:17:47// list-reverse#include <iostream>#include <list>#include <algorithm>#include <numeric>#include &...

2018-04-27 07:45:00 324

原创 list-resize

////////////////////////////////////////// 2018/04/26 19:50:11// list-resize// change the size of the list#include <iostream>#include <list>using namespace std;int main...

2018-04-27 07:17:08 673

原创 list-rend

////////////////////////////////////////// 2018/04/26 19:46:56// list-rend#include <iostream>#include <list>#include <algorithm>#include <numeric>#include <...

2018-04-27 07:16:41 247

原创 list-remove

////////////////////////////////////////// 2018/04/26 14:20:48// list-remove// removes elements from the list#include <iostream>#include <list>#include <algorithm>#...

2018-04-26 14:33:00 102

原创 list-rbegin

////////////////////////////////////////// 2018/04/26 14:16:15// list-rbegin// returns a reverse iterator to the beginning of the list#include <iostream>#include <list>#in...

2018-04-26 14:32:23 366

火车网上购票系统.pptx

火车网上购票系统

2023-05-22

秦万强PE文件学习笔记.pdf

秦万强PE文件学习笔记.pdf

2021-06-06

网络编程之发送结构体.zip

网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体网络编程之发送结构体

2020-03-07

gdip C++ 博客对应代码

博客的配套代码,gdi显示图片 博客的配套代码,gdi显示图片

2019-12-11

AfKayAs.2.zip

博客配套破解程序

2019-10-07

MFC限制输入只可以是小数点,数字V1.2修正版

MFC限制输入只可以是小数点,数字 博客配套代码博客配套代码博客配套代码

2019-09-07

markpad2 64bit 带注册码

自已用的,可以使用。

2019-01-18

MFC限制输入只可以是小数点,数字

MFC限制输入只可以是小数点,数字

2019-01-10

配套博客的文件

这个是配套博客的文本文件,为了后来和纪录和学习。这个是配套博客的文本文件,为了后来和纪录和学习。

2018-05-02

9.12 key,亲测可用

TC 9.12 key,亲测可用 TC 9.12 key,亲测可用 TC 9.12 key,亲测可用 TC 9.12 key,亲测可用 TC 9.12 key,亲测可用

2018-03-17

memoryleak

相关代码,好像最少是2分,没法子了 相关代码,好像最少是2分,没法子了

2018-02-28

isual C++项目开发案例精粹(1-13章)雷进辉.rar

Visual C++ 项目开发案例精粹 随书代码,

2017-07-17

多线程套接字间通信

对于初学者可能有一点参考价值

2017-03-14

VA and vsVIM 打包下载

这几天我打算用VS2010开发,可当我装好VS2010之后,发现原来的VA以经不能用了,从网上找了好多,终于找到一个可以用的,就传过来了。还有一个就是VIM 的键盘插件,可以让我们使用VS 像用 VIM 一样顺手,使开发直线提高,我很喜欢,也一并找包给大家了。注意;VA破解时,要把VA_X.dll(应该是这样的,不过只有一个单独的DLL,哈哈)复制在相应有目录下。 路径:C:\Users\你的用户名\AppData\Local\Microsoft\VisualStudio\10.0\Extensions\Whole Tomato Software\Visual Assist X\10.7.1925.0

2016-07-10

空空如也

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

TA关注的人

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