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
libevent http client
#include <errno.h>#include <
stdlib
.h>#include <string.h>#include <unistd.h>#include
·
2015-11-09 14:05
libevent
警告: 隐式声明与内建函数‘exit’不兼容 [默认启用]
警告: 隐式声明与内建函数‘exit’不兼容 [默认启用] 最近在学习linux下的多任务编程,用到exit等函数时,经常出现该警告,查找资料后发现,原因其实很简单,没有把
stdlib
.h头文件包含进来
·
2015-11-09 14:24
exit
内部排序算法比较。。= =
代码 #include < stdio.h > #include <
stdlib
.h
·
2015-11-09 14:18
排序算法
open_clientfd(char* hostname,int port)和open_listenfd(int port)
#include <stdio.h> #include <
stdlib
.h> #include <unistd.h> #include <string.h
·
2015-11-09 14:26
hostname
Linux ---> 简单socket
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <errno.h> 4 #include &
·
2015-11-09 14:23
socket
杭电1.3.6考试排名
1 /*杭电1.3.6考试排名*/ 2 #include <stdio.h> 3 #include <string.h> 4 #include <
stdlib
.h
·
2015-11-09 14:07
杭电
Linux网络编程9——对TCP与UDP的简易封装2.0
my_socket.h #ifndef __MY_SOCKET_H__ #define __MY_SOCKET_H__ #include <stdio.h> #include <
stdlib
.h
·
2015-11-09 14:28
linux
hdu 2846
如果该节点上次的建树的单词与本次相同就不更新,否则更新 #include<stdio.h> #include<string.h> #include<
stdlib
.h
·
2015-11-09 14:16
HDU
linux 文件内容的复制
#include <string.h> #include <strings.h> #include <stdio.h> #include <
stdlib
.h
·
2015-11-09 14:54
linux
c标准库中字符和数字转换的函数
字符转换为数字: #include<
stdlib
.h> atoi(); 将字符转换为整型
·
2015-11-09 13:13
函数
二叉树的广度搜索非递归 深度搜索递归和非递归
. // #include " stdafx.h " #include <
stdlib
.h
·
2015-11-09 13:34
二叉树
[C,C++] - 妙用0元素数组实现大小可变结构体
1eab2d1f57cc1bcda7866995.html #include < stdio.h > #include < string .h > #include <
stdlib
.h
·
2015-11-09 13:22
C++
[C] - 无向图
来源:网络 #include < stdio.h > #include <
stdlib
.h >
·
2015-11-09 13:41
c
[C] - 哈夫曼算法
include < malloc.h > #include < conio.h > #include <
stdlib
.h
·
2015-11-09 13:40
算法
[C] - 逆波兰计算器
来源:网络 #include < stdio.h > #include <
stdlib
.h &
·
2015-11-09 13:40
计算器
[C] - 希尔排序,非递归的快速排序,递归的快速排序,堆排序,归并排序,基数排序
来源:网络 #include < stdio.h > #include <
stdlib
.h >
·
2015-11-09 13:39
快速排序
[C] - 二叉排序树
来源:网络 #include < stdio.h > #include <
stdlib
.h >
·
2015-11-09 13:38
二叉排序树
数据结构——邻接表表示的图的关键路径算法
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:22
数据结构
数据结构——邻接表表示的图的拓扑排序算法
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:21
数据结构
数据结构——求邻接矩阵表示的图的关节点
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:19
数据结构
数据结构——广度优先搜索求点到点的最短路径
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:17
数据结构
数据结构——深度优先搜索求点到点的一般路径
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:16
数据结构
数据结构——图的邻接表的广度优先搜索
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:15
数据结构
数据结构——图的邻接表的深度优先搜索
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:14
数据结构
数据结构——图的邻接表表示法
using namespace std;#include < stdio.h > #include <
stdlib
.h
·
2015-11-09 13:13
数据结构
linux 服务器时间函数
根据需要自己选择吧,测试函数如下, #include <
stdlib
.h> #include
·
2015-11-09 13:50
linux
Linux Socket编程的一些总结
客户端Socket初始化代码 #include <stdio.h> #include <
stdlib
.h> #include <string.h> #include
·
2015-11-09 13:48
socket编程
Kurskal算法(克鲁斯卡尔算法)
代码: #include <stdio.h> #include <
stdlib
.h> #define MAXEDGE 20
·
2015-11-09 12:44
算法
用邻接表实现DFS和BFS
#include <stdio.h> #include <
stdlib
.h> #define MAXVERTEX 10 typedef char VertexType;
·
2015-11-09 12:43
DFS
邻接矩阵实现图的深度优先搜索(2)
/*树的邻接矩阵的存储结构*/ #include <stdio.h> #include <
stdlib
.h> #define MAXVEX 10 #define
·
2015-11-09 12:42
搜索
BF算法(朴素的模式匹配算法)
#include <stdio.h> #include <
stdlib
.h> int Index_BF(char S[],char T[])//s为目标串(长串),t为模式串
·
2015-11-09 12:39
算法
使用prctl API, 在父进程退出后,让子进程也退出
#include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <
stdlib
.h
·
2015-11-09 12:43
api
C学习
include <
stdlib
.h> 2、getch()无缓存、getchar()有缓存,多条连用时注意末尾换行符否则始终、putchar()、putch() 3、ctype.h:isalpha
·
2015-11-09 12:20
学习
C 整型转字符串
// #include "stdafx.h" #include <
stdlib
.h> #include <stdio.h> #include <
·
2015-11-09 12:17
字符串
时间显示的小程序
*/ #include <stdio.h> #include <
stdlib
.h> #include <Windows.h> #include <time.h
·
2015-11-09 12:23
时间
使用metasploit进行栈溢出攻击-3
具体如下: 1 /* server.c */ 2 #include <stdio.h> 3 #include <
stdlib
.h> 4 #inclu
·
2015-11-09 12:14
meta
《算法导论》第二章----两条习题
首先对集合进行排序,用归并排序(),然后再从集合的第一个元素到最后一个元素,对集合进行二分查找,查找x减去该元素() 1 #include <stdio.h> 2 #include <
stdlib
.h
·
2015-11-09 12:10
算法导论
发现中文版《C Primer Plus第五版》示例程序的一个错误
原著包含所有函数定义的list.c如下: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include &
·
2015-11-09 12:38
Prim
if简单的写法之范围
: Yangbin Date:2014年2月9日 03:22:32 Description: */ # include <stdio.h> # include <
stdlib
.h
·
2015-11-09 12:04
if
eight - zoj 1217 poj 1077
zojfulltest: 30000ms 2 # include <stdio.h> 3 # include <ctype.h> 4 # include <
stdlib
.h
·
2015-11-08 17:23
poj
[二分] PKU 1840 Eqs
二分:3+2; # include <stdio.h> # include <
stdlib
.h> # define trq(x) ((x)*(x)*(x)) int
·
2015-11-08 17:16
pku
USACO sec2.1 Healthy Holsteins
/* PROG : holstein LANG : C */ # include <stdio.h> # include <
stdlib
.h> struct scoop
·
2015-11-08 17:13
health
USACO sec2.1 Ordered Fractions
根据比较分数大小的方法排序,然后按顺序输出(相同的只输出一个); /* PROG : frac1 LANG : C++ */ # include <stdio.h> # include <
stdlib
.h
·
2015-11-08 17:12
action
程序员面试宝典——数据结构之双链表
1 #include<
stdlib
.h> 2 #include<iostream> 3 #include<stdio.h> 4 #include
·
2015-11-08 16:30
数据结构
javascript ES5 Object对象
原文: http://javascript.ruanyifeng.com/
stdlib
/object.html 目录 概述 Object对象的方法 Object() Object.keys
·
2015-11-08 16:22
JavaScript
多线程数据安全
//Test01.c #include <stdio.h>#include <unistd.h>#include <
stdlib
.h>#include <pthread.h
·
2015-11-08 16:59
多线程
inotify使用代码
#include <stdio.h> #include <sys/epoll.h> #include <
stdlib
.h> #include <sys/inotify.h
·
2015-11-08 16:36
notify
单位圆的最多覆盖据点 (重点需要学习!)
我自己的代码,提交错误,需要修改 #include <stdio.h> #include <string.h> #include <
stdlib
.h> #include
·
2015-11-08 16:19
学习
个人定义规范(*【模板】)...
#include <stdio.h> #include <string.h> #include <
stdlib
.h> #include <ctype.h&
·
2015-11-08 16:58
模板
再谈树---无根树转有根树( dfs搜索转化+fa数组记录父节点) *【模板】
#include <stdio.h> #include <string.h> #include <
stdlib
.h> #include <vector>
·
2015-11-08 16:54
DFS
上一页
64
65
66
67
68
69
70
71
下一页
按字母分类:
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
其他