码迷,mamicode.com
首页 >  
搜索关键字:struct tm    ( 20030个结果
poj2398Toy Storage
同poj2318! 1 //Accepted 220 KB 0 ms 2 #include 3 #include 4 #include 5 using namespace std; 6 const int MAXN = 1005; 7 struct node 8 {...
分类:其他好文   时间:2014-05-26 12:39:06    阅读次数:242
Linux下用C实现域名到IP的转换(域名解析)
只需调用一个函数即可gethostbyname(),gethostbyname()返回对应于给定主机名的包含主机名字和地址信息的hostent结构指针。结构的声明与gethostaddr()中一致。下面是函数原型: Windows平台下 #include struct hostent FAR *PA...
分类:系统相关   时间:2014-05-26 11:27:30    阅读次数:324
<C++>创建窗口
Step 1:WNDCLASStypedef struct _WNDCLASS{ UINT style; WNDPROC lpfnWndProc; int cbClsExtra; int cbWndExtra; ...
分类:编程语言   时间:2014-05-26 11:02:57    阅读次数:229
【HDOJ】1031 Design T-Shirt
qsort直接排序。 1 #include 2 #include 3 #include 4 5 #define MAXNUM 1000 6 7 typedef struct { 8 int index; 9 double statis;10 } node_st;11 12 ...
分类:其他好文   时间:2014-05-26 10:05:44    阅读次数:229
崩溃问题汇总
1.malloc申请空间不当,导致越界,在不定的情况下崩溃typedef struct _tagCmsHcInst{。。。。。。}cmsHcInst,*pcmsHcInst;错误:pcmsHcInstinst = (pcmsHcInst)malloc(sizeof(pcmsHcInst))正确:pc...
分类:其他好文   时间:2014-05-26 07:22:58    阅读次数:163
约瑟夫环 c++ 循环输入
#include#include#include#include using namespace std;template class joseph{ struct node { T data; node * next; node():next(...
分类:编程语言   时间:2014-05-26 06:44:29    阅读次数:390
回调函数的应用误区4(c/s OK版本回调小程序)
##################dll.h###################pragma oncetypedef void (*CALLBACK)(int );typedef struct handleCB{ CALLBACK t_fun;}stCallBack;static stCallB...
分类:其他好文   时间:2014-05-26 06:22:27    阅读次数:275
链栈的c语言实现
1.链栈结构 typedef struct StackNode { SElemType data; struct StackNode *next; }StackNode,*LinkStackPtr; typedef struct { LinkStackPtr top; int count; }LinkSta...
分类:编程语言   时间:2014-05-24 23:35:39    阅读次数:429
POJ3067 树状数组+逆序数
设两线段为(x1,y1) ,(x2,y2), 若使两线段相交,需使x1y2||x1>x2&&y1 2 #include 3 #include 4 #define MAXH 1005 5 using namespace std; 6 7 int n, m, k; 8 struct mem{ 9 ...
分类:其他好文   时间:2014-05-24 12:43:55    阅读次数:333
stack2
#includeusing namespace std;template class Stack{ private: struct Node{ Object data; Node * next; Node(cons...
分类:其他好文   时间:2014-05-24 09:32:25    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!