刘收获

导航

上一页 1 ··· 9 10 11 12 13 14 下一页

2016年10月10日 #

事件问题 Event

摘要: Event事件可以理解为在异步过程中实现同步的操作.但是要注意不要过分的使用Event,否则异步就失去了意义。 直接通过代码来说明: #include #include using namespace std; //进程内部 线程通知 异步 ->同步 UINT32 __stdcall CallBac 阅读全文

posted @ 2016-10-10 11:38 沉疴 阅读(125) 评论(0) 推荐(0) 编辑

2016年10月5日 #

TCP Socket 通讯(客户端与服务端)

摘要: /* 编译环境:VS2015 */ /* Author:刘收获 */ //Sever端口 // ConsoleApplication1.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include <WinSock2.h> #include <iostream 阅读全文

posted @ 2016-10-05 11:58 沉疴 阅读(385) 评论(0) 推荐(0) 编辑

2016年9月28日 #

AVLTree 平衡树

摘要: //测试数据//第一组:7个输入,测试LL型,40,36,44,32,38,28,24;//第二组:7个输入,测试RR型,40,36,44,43,48,52,56;//第三组:7个输入,测试LR型,40,36,44,32,37,38,39;//第四组:7个输入,测试RL型,40,36,44,48,4 阅读全文

posted @ 2016-09-28 10:31 沉疴 阅读(211) 评论(0) 推荐(0) 编辑

2016年9月25日 #

CONTAINING_RECORD的实现

摘要: // 9.25.cpp : 定义控制台应用程序的入口点。///* CONTAINING_RECODER的实现 */ #include "stdafx.h"#include <windows.h> typedef struct _DATA_ { int a; int b; int c; int d;} 阅读全文

posted @ 2016-09-25 23:11 沉疴 阅读(157) 评论(0) 推荐(0) 编辑

2016年9月22日 #

HDU 1005 Number Sequence

摘要: Number Sequence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 154923 Accepted Submission(s): 37 阅读全文

posted @ 2016-09-22 09:38 沉疴 阅读(200) 评论(0) 推荐(0) 编辑

2016年9月21日 #

线程同步(临界区的使用)

摘要: 1.SingalObject #include <windows.h>#include <iostream> using namespace std; CRITICAL_SECTION cs; int m = 0;int n = 0;DWORD WINAPI ThreadProc(LPVOID Pa 阅读全文

posted @ 2016-09-21 11:00 沉疴 阅读(258) 评论(0) 推荐(0) 编辑

2016年9月20日 #

访问class中的保护对象的方法

摘要: #include <windows.h>#include <iostream> using namespace std; DWORD WINAPI ThreadProc(LPVOID Param); class MyClass{public: MyClass() { m_1 = 10; m_2 = 阅读全文

posted @ 2016-09-20 23:37 沉疴 阅读(161) 评论(0) 推荐(0) 编辑

HDU1004 BALLO0N

摘要: Let the Balloon Rise Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 108214 Accepted Submission( 阅读全文

posted @ 2016-09-20 10:42 沉疴 阅读(211) 评论(0) 推荐(0) 编辑

2016年9月18日 #

杭电2059 龟兔赛跑 动态规划

摘要: 龟兔赛跑 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 16412 Accepted Submission(s): 6189 Problem D 阅读全文

posted @ 2016-09-18 10:09 沉疴 阅读(285) 评论(0) 推荐(0) 编辑

杭电2063 过山车 匈牙利算法

摘要: 过山车 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 19179 Accepted Submission(s): 8375 Problem De 阅读全文

posted @ 2016-09-18 10:05 沉疴 阅读(146) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 下一页