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
数据结构-括号匹配程序
程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #define STACK_INIT_SIZE 100
·
2015-11-13 15:19
数据结构
数据结构-快速排序
程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <time.h>
·
2015-11-13 15:18
数据结构
数据结构-冒泡法排序
程序运行截图如下: 程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <time.h
·
2015-11-13 15:17
数据结构
数据结构-选择法排序
程序运行结果见如下截图: 程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <
·
2015-11-13 15:16
数据结构
数据结构-折半插入排序
见如下截图: 程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <time.h
·
2015-11-13 15:15
数据结构
数据结构-表达式求值
程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <string.h>
·
2015-11-13 15:13
数据结构
二叉树遍历的非递归实现
#include<stdio.h> #include<stack> #include<
stdlib
.h> using namespace std; struct
·
2015-11-13 15:01
二叉树
C语言中类型转换那些事儿
除了强制类型转换和隐士类型转换外,其余的转换函数基本集中在头文件<
stdlib
.h>中。 具体参见代码中的注释,代码中只写了几个函数的测试函数,其余的可类似参考编写。
·
2015-11-13 15:08
类型转换
nullnulllinux动态异长存储资源分配算法的实现
#ifdef HAVA_CONFIG_H #include <config.h> #endif #include<stdio.h> #include<
stdlib
.h
·
2015-11-13 15:46
linux
HDU4712+随机算法
随机算法 */ #include<algorithm> #include<iostream> #include<string.h> #include<
stdlib
.h
·
2015-11-13 15:22
HDU
HDU4608+模拟
模拟 */ #include<algorithm> #include<iostream> #include<string.h> #include<
stdlib
.h
·
2015-11-13 15:21
HDU
C++版的循环缓冲区类(实际测试可用!)
ifndef __test__CCycleBuffer__ #define __test__CCycleBuffer__ #include <stdio.h> #include <
stdlib
.h
·
2015-11-13 14:11
C++
堆排序的C语言实现
代码 #include < stdio.h > #include <
stdlib
.h > void HeapSort( int
·
2015-11-13 14:30
C语言
【原创】连接字符串数组
#include < stdio.h > #include <
stdlib
.h > char * UnionStringArray(
·
2015-11-13 14:27
字符串
【原创】用C实现Trim()函数
测试代码如下: #include <stdio.h> #include <
stdlib
.h>char * Trim(char *str);int main(int argc
·
2015-11-13 14:25
trim
【摘】用C实现将数组转换为字符串
代码 #include < stdio.h > #include <
stdlib
.h > char * digitToAlpha
·
2015-11-13 14:25
字符串
一个俄罗斯方块的源代码
一个俄罗斯方块的源代码,自己写的,有点笨的……#include<dos.h> #include<
stdlib
.h> #include<conio.h> #include
·
2015-11-13 14:23
源代码
POJ3771+Prim
/* Prim */ #include<stdio.h> #include<string.h> #include<
stdlib
.h> #include<
·
2015-11-13 14:34
Prim
C++ 哈弗曼编码的实现与反编码
#include<iostream> #include<
stdlib
.h> #include<string.h> using namespace std; typedef
·
2015-11-13 14:10
C++
希尔排序的C语言实现(2)
代码 #include < stdio.h > #include <
stdlib
.h > void ShellSort( int
·
2015-11-13 14:34
希尔排序
希尔排序的C语言实现(1)
代码 #include < stdio.h > #include <
stdlib
.h > int initialStep
·
2015-11-13 14:33
希尔排序
简单插入排序的C语言实现
代码 #include < stdio.h > #include <
stdlib
.h > void PrintHeap( const
·
2015-11-13 14:32
插入排序
hdoj 1181 变形课
#include <stdio.h> #include <
stdlib
.h> #include <string.h> #define N 1000 #define
·
2015-11-13 14:45
OJ
C time.h using
time.h " 2 #include " stdio.h " 3 #include "
stdlib
.h
·
2015-11-13 14:37
time
调用实现使用popen()函数获取其他Console中的内容
如下码源: #include <stdio.h> #include <
stdlib
.h> int main(int argc
·
2015-11-13 14:25
console
寻找发帖“水王”的扩展问题
#include<stdio.h> #include<
stdlib
.h> /* 在一个论坛,发现有三个发帖很多的Id ,他们发帖的总数都超过了总数的1/4 ,编程快速的找到这三个
·
2015-11-13 13:42
问题
面试中常考的C函数库中的字符串处理函数
#include<stdio.h> #include<
stdlib
.h> #include<string.h> #include<assert.h>
·
2015-11-13 13:26
字符串处理
面试中常考的单链表处理
#include<stdio.h> #include<
stdlib
.h> #include<assert.h> struct node { int data
·
2015-11-13 13:24
单链表
C++11特性原子类型——多原子类型并行访问的串行化测试
/*C++11 原子类型测试 问题:如果有多个原子需要操作,如何保障并行的序列化 */ #include <thread> #include <
stdlib
.h>
·
2015-11-13 13:14
C++
poj1679(The Unique MST)Kruskal
#include<stdio.h> #include<
stdlib
.h> struct edge { int u,v,w,flag; }p[4952]; int n
·
2015-11-13 13:10
unique
C++的qsort函数
1、函数简介 功 能: 使用 快速排序例程进行排序 头文件:
stdlib
.h 用 法: void qsort(void *base,int nelem,int width,int
·
2015-11-13 13:08
sort
WOJ 1055
#include<stdio.h> #include<
stdlib
.h> #include<string.h> int main() { char
·
2015-11-13 13:27
OJ
c getline
; #include <stdio.h> #include <
stdlib
.h
·
2015-11-13 13:14
get
c语言来实现c++
闲来没事,看了看sqlite的源代码,突然想用c实现c++,写了例如以下demo,自我感觉不错 #include <stdio.h> #include <
stdlib
.h>
·
2015-11-13 13:10
C++
在线编程:字符串的完美度
#include <
stdlib
.h> int perfect(const char *s) { char *p=s; int count_array[26
·
2015-11-13 13:45
字符串
C语言中字符串如何转换为二进制、八进制、十进制、十六进制
比如字符串"0x1a"转换成10进制的26,可以用以下函数来实现 相关函数: atof, atoi, atol, strtod, strtoul 表头文件: #include <
stdlib
.h
·
2015-11-13 13:32
十六进制
函数多个返回值(返回多个参数/局部变量)通过双重指针来实现
// #include "stdafx.h" #include <
stdlib
.h>//malloc需要的头文件 #include "cstring&
·
2015-11-13 12:38
局部变量
hdu 3290 (简单dfs)
刚开始以为1就是根节点,根节点不确定,, #include<stdio.h> #include<string.h> #include<
stdlib
.h
·
2015-11-13 12:48
HDU
内存的动态分配
void *malloc(unsigned int)函数包含在<
stdlib
.h>头文件中,void * //泛型指针,其返回值为指针可以付给任何类型 malloc(1000
·
2015-11-13 12:20
内存
找1到n所有整数出现1的个数
1 #include <iostream> 2 #include <
stdlib
.h> 3 #include <time.h> 4 using namespace
·
2015-11-13 12:37
leetcode[150] Evaluate Reverse Polish Notation
它应该是在
stdlib
.h的头文件里,不过我在codeblock上试了不行。
·
2015-11-13 12:50
LeetCode
归并排序
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<limits.h> 4 void merge(int
·
2015-11-13 12:20
归并排序
HDU4756+Prim
分别求出最小生成树和次最小生成树,再在这两棵树上求最小生成树 #include<stdio.h> #include<string.h> #include<
stdlib
.h
·
2015-11-13 12:24
Prim
Davinci开发板DM368 nandwrite.c简要分析
#include <stdio.h> #include <
stdlib
.h> #include <sys/stat.h> #include <limits.h
·
2015-11-13 12:53
write
WOJ 1020
#include<stdio.h> #include<
stdlib
.h> int main() { int n,m; int *num,*link;
·
2015-11-13 12:13
OJ
EXIT_SUCCESS_百度百科
EXIT_SUCCESS_百度百科 EXIT_SUCCESS 求助编辑百科名片 EXIT_SUCCESS是C语言头文件库中定义的一个符号常量,在vc++6.0下头文件
stdlib
.h中定义如下
·
2015-11-13 12:06
exit
合并排序
#include <stdio.h> #include <
stdlib
.h> //merge_sort -->合并排序 /* 自顶向下 采用分治法进行自顶向下的算法设计
·
2015-11-13 11:05
排序
C语言递归实现二叉树的先序、中序、后序遍历
#include <stdio.h> #include <
stdlib
.h> //*****二叉树的二叉链表存储表示*****// typedef struct BiNode
·
2015-11-13 11:18
C语言
pwd的实现
#include <string.h> #include <
stdlib
.h> #include <dirent.h> #include <sys/types.h
·
2015-11-13 11:30
实现
[C++
STDlib
基础]关于日期时间的操作——C++标准库头文件
总结 /* A.头文件<ctime> #if _GLOBAL_USING && !defined(RC_INVOKED) _STD_BEGIN 1.四个数据类型 using _CSTD clock_t; using _CSTD size_t; using _CSTD time_t; using _CSTD tm; 2.九个时间函数 using _CS
·
2015-11-13 11:11
time
上一页
34
35
36
37
38
39
40
41
下一页
按字母分类:
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
其他