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
棋盘问题poj1321
1 #include < stdio.h > 2 #include <
stdlib
.h
·
2015-11-07 10:24
poj
栈的运用(6)--逆波兰式求值
代码 View Code 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #define
·
2015-11-07 10:19
栈
数论知识(1)-------------素数打表
1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4
·
2015-11-07 09:51
素数
在数字字符串中插入千分符
View Code 1 #include<stdio.h> 2 3 #include<string.h> 4 5 #include<
stdlib
.h
·
2015-11-07 09:51
字符串
windows下srand48()和drand48()的问题
srand48()和drand48()的问题 1 #ifndef DRAND48_H 2 #define DRAND48_H 3 4 #include <
stdlib
.h
·
2015-11-07 09:33
windows
输入三个数,然后从大到小输出
#include <stdio.h> #include <
stdlib
.h> void Descending(int
·
2015-11-07 09:14
输出
字符串插入块链实现——数据结构上机实验
1、相关类型说明#definechunksize8#include"
stdlib
.h"#include"stdio.h"#include"string.h"typedefstructchunk{ charch
qq_29600137
·
2015-11-06 12:00
数据结构
字符串
LINUX下的整行读取
代码 #include < unistd.h > #include < stdio.h > #include <
stdlib
.h
·
2015-11-06 08:19
linux
c语言库函数qsort详解
C语言标准库函数 qsort 详解 转载▼ 标签: it 分类: ACM qsort包含在<
stdlib
.h>头文件中,此函数根据你给的比较条件进行快速排序,
·
2015-11-06 07:43
sort
Linux编程基础之多线程
1 #include <stdio.h> 2 #include <pthread.h> 3 #include <
stdlib
.h> 4 #include &
·
2015-11-06 07:39
linux
C基础知识之理解指向函数的指针
代码文件:compare.c #include <stdio.h>#include <
stdlib
.h&
·
2015-11-06 07:32
函数
数据结构-栈的基本操作
代码1: mystack.h #include <stdio.h>#include <malloc.h>#include <
stdlib
.h>#include &
·
2015-11-06 07:28
数据结构
C语言:将16进制字符串转化为int类型值
view plain copy #include <stdio.h> #include <
stdlib
.h
·
2015-11-06 07:35
字符串
由链表初始化看C语言的二级指针
先来看C语言创建链表、插入节点和遍历链表的一段代码: #include <stdio.h> #include <
stdlib
.h> typedef int ElemType
·
2015-11-06 07:12
C语言
hdu1262寻找素数对<数论>
pid=1262 View Code 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <math.h
·
2015-11-05 09:49
HDU
c进阶1(堆,栈,静态区,代码区)
栈的大小固定,默认1M,可以编译的时候设置,超出则溢出 变量离开作用范围后,栈上的数据会自动释放 栈是连续的,向上增长 #include<stdio.h> #include <
stdlib
.h
·
2015-11-05 08:04
代码
C基础11(strstr函数实现)
找到所搜索的字符串,则该函数返回第一次匹配的字符串的地址;如果未找到所搜索的字符串,则返回NULL 2.strstr函数运用 #include <stdio.h> #include<
stdlib
.h
·
2015-11-05 08:03
函数
c基础6(if,switch,循环,goto,递归)
案例:将输入的三个数按照从小到大的顺序输出 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<
stdlib
.h
·
2015-11-05 08:01
switch
C++ 让控制台运行到最后按下回车键才结束的3种方法
) 2、先添加头文件“#include <stdio.h>”,然后在主函数return 0;前加上一句“getchar();” 3、先添加头文件“#include <
stdlib
.h
·
2015-11-05 08:29
C++
用头插法实现单链表整表创建
1 #include<iostream> 2 #include<cstring> 3 #include<stdio.h> 4 #include<
stdlib
.h
·
2015-11-05 08:58
单链表
[编程珠玑]马尔科夫链自动产生文本
的马尔科夫链 word-level 1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h
·
2015-11-05 08:00
编程珠玑
opencv 图像显示IplImage
;opencv\cv.h> #include <opencv\highgui.h> #include <opencv\cxcore.h> #include <
stdlib
.h
·
2015-11-05 08:23
opencv
关于void *指针的一点心得....
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <string.h> 4 #include
·
2015-11-05 08:58
指针
[置顶] qsort(),sort()排序函数
一.qsort()函数功能:使用快速排序例程进行排序头文件:
stdlib
.h用法:voidqsort(void*base,intnelem,intwidth,int(*fcmp)(constvoid
eagle_or_snail
·
2015-11-04 19:00
用C语言制作小型商品信息管理系统过程中的问题
// #include "stdafx.h" #include<stdio.h> #include<
stdlib
.h> #include<iostream
·
2015-11-03 22:07
C语言
四则运算出题器(C++)
代码: #include<iostream.h>#include<
stdlib
.h>#include<
·
2015-11-03 22:57
四则运算
排序算法(一):冒泡排序 Bubble Sort
代码 1 #include < iostream > 2 #include <
stdlib
.h
·
2015-11-03 22:19
Bubble
DIY一款C/C++编译器
我们用记事本新建一个文件,文件后缀改成.c,例如文件名叫做"1.c",在文件里写上最简单的C或者C++代码, 1 #include<stdio.h> 2 #include<
stdlib
.h
·
2015-11-03 22:43
c/c++
语言中文[置顶] BrainFuck语言的解释器以及中文录入
nbsp;废话不多说,先附上解析的此语言的编译器代码 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <
stdlib
.h
·
2015-11-03 22:07
中文
数据结构总复习(查找)
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 typedef struct{ 4 int *elem; 5 int length
·
2015-11-03 21:56
数据结构
数据结构总复习(2)
2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<string.h> 5 #include<
·
2015-11-03 21:49
数据结构
面试题集锦_8
不能用递归 实现代码: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 typedef struct BiTNode
·
2015-11-03 21:44
面试题
面试题集锦_7
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 typedef struct LNode{ 4 int data; 5 struct
·
2015-11-03 21:43
面试题
面试题集锦_4
实现的代码: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 typedef struct Person{ 4
·
2015-11-03 21:41
面试题
B-树
blog.csdn.net/chenhuijie666/article/details/8662554 1 #include<stdio.h> 2 #include<
stdlib
.h
·
2015-11-03 21:37
树
二叉排序树
代码如下: 1 //#define int ElemType 2 #include<stdio.h> 3 #include<
stdlib
.h> 4
·
2015-11-03 21:36
二叉排序树
平衡二叉树
代码如下: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 typedef struct BSTNode{
·
2015-11-03 21:36
二叉树
面试题集锦_1
时间复杂度为O(N^2)的算法去实现的代码如下: 1 #include<stdio.h> 2 #include<math.h> 3 #include<
stdlib
.h
·
2015-11-03 21:34
面试题
串操作
代码: View Code 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 typedef struct LNode{
·
2015-11-03 21:33
操作
06-图3 六度空间
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <stdbool.h> 4 #include
·
2015-11-03 21:01
图
栈的应用实例——计算后缀表达式
/* postfix_expression.c */ #include "stack.h" #include <stdio.h> #include <
stdlib
.h
·
2015-11-03 21:15
表达式
栈的应用实例——平衡符号
/* stack_balance_symbol */ #include "stack.h" #include <stdio.h> #include <
stdlib
.h
·
2015-11-03 21:12
实例
程序员算法之找出链表的第K个结点
View Code 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 4 typedef struct Lode{
·
2015-11-03 21:08
程序员
程序员算法之翻转单词中的字符
View Code 1 #include <
stdlib
.h> 2 #include <string.h> 3 #include <stdio.h>
·
2015-11-03 21:06
程序员
数据结构之栈的实现
View Code 1 #include <stdio.h> 2 #include "SqStack.h" 3 #include <
stdlib
.h
·
2015-11-03 21:03
数据结构
windows如何下防止内存泄露
.利用库检测内存泄露信息 #define _CRTDBG_MAP_ALLOC //如果没有这个宏定义,我们只能知道有内存泄露,却无法知道在哪个地方申请内存忘记了释放 #include <
stdlib
.h
·
2015-11-03 20:57
windows
ios入门之c语言篇——基本函数——1——随机数生成
int,数字范围最大值; 返回值: 1:闰年; 0:非闰年; 备注: a-b的绝对值不能超过int的最大值(65535); 头文件: time.h 、
stdlib
.h
·
2015-11-03 20:15
ios
memcpy和strlen函数的实现
#include <stdio.h> #include <
stdlib
.h> //malloc()函数 typedef unsigned int size_t; size_t
·
2015-11-03 20:19
函数
无锁队列--基于linuxkfifo实现
#ifndef _NO_LOCK_QUEUE_H_ #define _NO_LOCK_QUEUE_H_ #include <
stdlib
.h> #include <stdio.h>
·
2015-11-02 19:11
linux
UNIX IPC: POSIX 消息队列 与 信号
下面是一份基本的消息队列和信号处理结合的代码(修改自UNIX网络编程:进程间通信) #include <stdio.h> #include <
stdlib
.h> #include
·
2015-11-02 19:56
unix
上一页
69
70
71
72
73
74
75
76
下一页
按字母分类:
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
其他