码迷,mamicode.com
首页 >  
搜索关键字:jsp include    ( 101623个结果
数据结构------线性表的链式表示与实现
不多说直接上代码:#include"stdafx.h"#include #include /******************************************************************************/* 数据类型和常量定义/*************...
分类:其他好文   时间:2014-05-07 09:47:56    阅读次数:275
简单的windows作业管理(自己也没弄透彻)
先把代码贴出来,以后有时间再研究!简单的说,作业就相当于沙箱,可以使程序在一定范围内活动。#include "stdafx.h"#include "windows.h"#include using namespace std;SECURITY_ATTRIBUTES sa;STARTUPINFO si...
分类:Windows程序   时间:2014-05-07 09:31:00    阅读次数:568
C语言使用pthread多线程编程(windows系统)一
运行之前需要做一些配置:1.下载PTHREAD的WINDOWS开发包 pthreads-w32-2-4-0-release.exe(任何一个版本均可) http://sourceware.org/pthreads-win32/ ,解压到一个目录。2.找到include和lib文件夹,下面分别把它们添...
分类:编程语言   时间:2014-05-07 09:09:37    阅读次数:397
中序线索化二叉树
这个代码其实自己花了很长的时间去理解,渐渐的有所明白了一点。#include #include typedef enum { Link , Thread } PointTag; //Link表示指针,Thread表示线索typedef struct treenode ...
分类:其他好文   时间:2014-05-07 09:07:36    阅读次数:262
不要忽视结构中的数组
#include#define NULL 0struct Node{ char po[10]; struct Node *next;};int main(void){ struct Node a,*head,*p; a.po[10]="abc"; struct Node...
分类:其他好文   时间:2014-05-06 14:14:13    阅读次数:288
fzu 2035 Axial symmetry(判断多边行对称)
题目地址:http://acm.fzu.edu.cn/problem.php?pid=2035题目意思也很好懂,就是处理如何判断多边行是否对称。先找出所有点的中点,然后一共有2×N个点,依次检查是否关于XY的连线对称代码如此:#include #include #include #define Ma...
分类:其他好文   时间:2014-05-06 14:06:01    阅读次数:282
使用_beginThreadex创建多线程(C语言版多线程)
_beginThreadex创建多线程解读一、需要的头文件支持#include // for _beginthread()需要的设置:ProjectàSetting-->C/C++-->User run-time library 选择Debug Multithreaded 或者Multithread...
分类:编程语言   时间:2014-05-06 14:03:26    阅读次数:546
一个奇怪的语法问题
#include #include //#include #include #include //using namespace std;int main(){ double a = (-4.0+sqrt(7.0))/3.0; double b = (-4.0-sqrt(7.0))/3....
分类:其他好文   时间:2014-05-06 13:29:21    阅读次数:325
POJ1474 Video Surveillance(半平面交)
很多道相似的半平面交,但只过了这个,心都碎了。。#pragma warning(disable:4996)#include #include #include #include #include #include #include using namespace std;#define maxn 2...
分类:其他好文   时间:2014-05-06 12:58:01    阅读次数:344
C语言多线程pthread库相关函数说明
线程相关操作说明 一 pthread_t pthread_t在头文件/usr/include/bits/pthreadtypes.h中定义: typedef unsigned long int pthread_t; 它是一个线程的标识符。 二 pthread_create 函数pthre...
分类:编程语言   时间:2014-05-06 09:46:36    阅读次数:505
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!