E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
stdlib
BerkeleyDB和eXtremeDB性能在LINUX下的比较
测试源程序: #include <sys/types.h> #include <assert.h> #include <stdio.h> #include <
stdlib
.h
·
2015-10-31 11:22
Berkeley
POJ2349+Prim
*/ #include<stdio.h> #include<string.h> #include<
stdlib
.h> #include<algorithm
·
2015-10-31 11:14
Prim
C语言实现定积分求解方法
#include <stdio.h> #include <
stdlib
.h> #include <math.h> #include <time.h
·
2015-10-31 11:14
C语言
二分思想判断数组中是否有两数和为sum
4 */ 5 #include <stdio.h> 6 #include <
stdlib
.h> 7 int find(int a[], int len, int sum
·
2015-10-31 11:20
SUM
使用指针操作列表时,
代码: #include <stdio.h> #include <
stdlib
.h> struct node{ int data; struct node
·
2015-10-31 11:25
指针
月球美容计划之最短路
迪杰斯特拉 有点像普利姆算法的精简版,不能有负权边 #include <stdio.h> #include <
stdlib
.h> #include <string.h&
·
2015-10-31 11:21
最短路
syslog()用法
#include <stdio.h>#include <
stdlib
.h>#include <syslog.h>#include <fcntl.h>int
·
2015-10-31 11:02
syslog
xinetd编程
我写了一个小程序:/***** tcpgoodie.c**/#include <stdio.h> #include <
stdlib
.h> #include &
·
2015-10-31 11:02
net
sicily 1036 Crypto Columns
#include <
stdlib
.h> #include <iostream> #include <string> using namespace std;
·
2015-10-31 11:38
column
1007 sicily To and Fro
#include <
stdlib
.h> #include <iostream> #include <string> using namespace std;
·
2015-10-31 11:38
CI
sicily 1198 Substring
#include <
stdlib
.h> #include <iostream> #include <string> using namespace std;
·
2015-10-31 11:38
substring
sicily 1156 ——虽然Wrong error(原因尚未查明),但温习了一下基础知识
#include <iostream>#include <
stdlib
.h>using namespace std;bool isAdd=false;typedef struc
·
2015-10-31 11:38
error
sicily 1050 Numbers & Letters
#include <iostream> #include <
stdlib
.h> using namespace std; #define N 5 long array[N
·
2015-10-31 11:38
number
sicily 1009 Mersenne Composite N
//给一个数k,对小于k的素数,若2^k -1 的值是合数的话,求出它的质因子 #include <
stdlib
.h> #include <iostream> #include
·
2015-10-31 11:38
com
sicily 1035 基因对问题
#include <
stdlib
.h> #include <iostream> #include <string> using namespace std;
·
2015-10-31 11:37
问题
1027 sicily MJ, Nowhere to Hide
#include <
stdlib
.h> #include <iostream> #include <string> using namespace std;
·
2015-10-31 11:37
where
C类型和存储方式的语言变量
这个变量能够与1中的变量重名,在复合语句作用域中里面定义的变量权限更高,考虑到可读性不推荐这么做 比如: #include<stdio.h> #include<
stdlib
.h
·
2015-10-31 10:55
变量
[开心IT面试题] realloc用法
1、头文件 #include <
stdlib
.h> 有些编译器需要#include <malloc.h>,在TC2.0中可以使用alloc.h头文件 2、re
·
2015-10-31 10:18
面试题
奇偶排序
92 3 8 样例输出: 7 5 3 8 12 34 92 不同语言的解法 1,使用C语言来解决 #include <stdio.h> #include <
stdlib
.h
·
2015-10-31 10:47
排序
HDU4528+BFS
#include<stdio.h> #include<string.h> #include<
stdlib
.h> #include<algorithm>
·
2015-10-31 10:43
HDU
Windows 退出码
返回到当前进程的调用者,即系统,并且还返回给系统一个退出码,即ststus;我们可以利用DOS中的程序异常结束的返回值errorlevel来获得;如:程序exitcode.c#include <
stdlib
.h
·
2015-10-31 10:34
windows
zlib stream
官方帮助手册 http://www.zlib.net/manual.html #include <
stdlib
.h> #include &
·
2015-10-31 10:06
Stream
C语言如何产生随机数
nbsp;在C语言中取随机数所需要的函数是: int rand(void); void srand(unsigned int n); rand()函数和srand()函数被声明在头文件
stdlib
.h
·
2015-10-31 10:58
C语言
严版数据结构题集3.15
#include<stdio.h> #include<
stdlib
.h>
·
2015-10-31 10:57
数据结构
严版数据结构题集2.13 & 2.14
试写一算法在带头结点的单链表结构上实现线性表操作Locate(L,x) 2、试写一算法在带头结点的单链表结构上实现线性表操作Length(L) #include<stdio.h> #include<
stdlib
.h
·
2015-10-31 10:57
数据结构
严版数据结构题集2.11
#include<stdio.h> #include<
stdlib
.h> #define LIST_INIT_SIZE 10 #define LIST_INCREMENT 2 #
·
2015-10-31 10:57
数据结构
calloc(), malloc(), realloc(), free(),alloca()
使用这些函数需要包含头文件
stdlib
.h。 四个函数之间的有区别,也有联系
·
2015-10-31 10:56
malloc
hdu 3642 体积并
:求三个矩形体积的并 链接:点我 枚举z 1 #include<stdio.h> 2 #include<iostream> 3 #include<
stdlib
.h
·
2015-10-31 10:29
HDU
poj 1811 大数分解
模板 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4 #include
·
2015-10-31 10:24
poj
LRU算法
#include <stdio.h> #include <
stdlib
.h> #include <iostream.h> #include <time.h
·
2015-10-31 10:06
LRU
经典DP 嵌套矩形 (南洋理工ACM—16)
本来是个很水的DP,结果被自己的代码习惯给打败了 代码: 1 #include<iostream> 2 #include<
stdlib
.h> 3 #include
·
2015-10-31 10:58
ACM
C语言结构体和联合体
1、单链表插入 #include <stdio.h> #include <
stdlib
.h> #define FALSE 0 #define TRUE 1 typedef
·
2015-10-31 10:07
C语言
构造函数和句柄类
//:0720.H--Handle classes#include "stdafx.h"#include <
stdlib
.h>#include <asse
·
2015-10-31 10:08
构造函数
Exponentiation
#include <stdio.h> #include <
stdlib
.h> #include <memory.h> char srcR[7], srcn[3]
·
2015-10-31 10:01
exp
above average
#include <stdio.h> #include <
stdlib
.h> int main() { int grade[100][1000]; // 1000
·
2015-10-31 10:00
ab
getc,getch,getche,getchar,fgetc
#include <stdio.h> #include <
stdlib
.h> #include <conio.h> int main() { char
·
2015-10-31 10:00
char
Exponentiation(poj能通过,joj不能)
#include <stdio.h> #include <
stdlib
.h> #include <string.h> using namespace std;
·
2015-10-31 10:00
exp
贪吃蛇游戏源码
#include <conio.h> #include <dos.h> #include <graphics.h> #include <
stdlib
.h
·
2015-10-31 10:40
贪吃蛇
一个简单的Lua解释器
#include "stdafx.h" #include<stdarg.h> #include<
stdlib
.h> #include<stdio.h
·
2015-10-31 10:30
lua
C/C++ 数学库函数
所在函数库为math.h、
stdlib
.h、string.h、float.h 1.
·
2015-10-31 10:29
c/c++
充分理解表达式——《狂人C》习题解答2(第二章习题5)
*/ #include <stdio.h> #include <
stdlib
.h> int main( void ) { printf ("1+3+5
·
2015-10-31 10:25
表达式
ACM PKU 1011 Sticks 深度优先搜索
#include <stdio.h> #include <
stdlib
.h> //due to:qsort#include <string.h> 
·
2015-10-31 10:43
ACM
在相邻元素相差1的数组中查找某一特定元素第一次出现的位置
#include <stdio.h> #include <
stdlib
.h> int main(void) { int a[] = {3,4,3,2,1,2
·
2015-10-31 10:39
数组
妙趣横生的算法:递归实现二进制转十进制
#include <stdio.h> #include <
stdlib
.h> void binary_to_decimal(char *s, long dec) {
·
2015-10-31 10:38
二进制
剑指Offer:打印从1到最大的n位数
.9 并依次输出,当位数n过大时,无论将其存入int或long或long long都会溢出,故使用字符串来模拟数字加法 #include <stdio.h> #include <
stdlib
.h
·
2015-10-31 10:38
打印
动态分配存储的顺序表
/* * 动态分配存储的顺序表 */ #include <stdio.h> #include <
stdlib
.h> #define INIT_SIZE 100
·
2015-10-31 10:38
动态
define宏定义
#include <stdio.h>#include <
stdlib
.h>#include <stdarg.h>#include <string.h>#include
·
2015-10-31 10:51
in
mkstemp用法
基本IO函数的使用(mkstemp) mkstemp(建立唯一的临时文件) 表头文件 #include<
stdlib
.h> 定义函数 int mkstemp(char * template
·
2015-10-31 10:51
用法
七种排序算法的实现和总结
1 /*排序算法大集合**/ 2 #include <stdio.h> 3 #include <string.h> 4 #include <
stdlib
.h
·
2015-10-31 10:29
排序算法
用链表实现通用堆栈
http://blog.csdn.net/douzixinxin/archive/2006/02/24/608035.aspx #include <assert.h>#include <
stdlib
.h
·
2015-10-31 10:49
链表
上一页
81
82
83
84
85
86
87
88
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他