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
学生信息管理系统
2015年12月25日 *版本号:vc++6.0 * *问题描述:学生信息管理系统,实现信息的输入,显示,查找,删除与插入*输入描述: */代码:#include"stdio.h" #include"
stdlib
.h
zhuguorong_zgr
·
2015-12-30 08:00
qsort函数
功能:使用快速排序例程进行排序头文件:
stdlib
.h原型:voidqsort(void*base,intnelem,intwidth,int(*fcmp)(constvoid*,constvoid*)
邻家那小孩儿
·
2015-12-29 11:00
数据结构课程设计:学成成绩管理系统
main.cpp*作 者:田祥弘*完成日期:2015年12月25日*版本号:V1.0**问题描述:学生成绩管理系统*程序输出:*/#include #include"stdio.h" #include"
stdlib
.h
BiBiBiu
·
2015-12-25 14:00
数据结构_1:线性表: C语言实现
代码:大话数据结构 #include"stdio.h" #include"
stdlib
.h" #include"io.h" #include"math.h" #include"time.h" #defineOK1
mijian1207mijian
·
2015-12-25 00:00
常见的伪随机数产生
转自:http://blog.csdn.net/chl033/article/details/3936584#include"
stdlib
.h" #include"stdio.h" #include"math.h
lynnucas
·
2015-12-23 10:00
C /C++标准库 -
(
stdlib
.h)
stdlib
.hstandardlibrary标准库头文件,是一个大杂烩,定义和声明一些没有明显的归属的宏和函数。
u010177286
·
2015-12-15 22:00
C语言
library
[转]qsort详解
qsort函数是ANSIC标准中提供的,其声明在
stdlib
.h文件中,是根据二分发写的,其时间复杂度为n*log(n),其结构为:voidqsort(void*base,size_tnelem,size_twidth
凡尘网络
·
2015-12-15 16:00
iOS 轻量级的数据库leveldb
leveldb终端:1:gitclone https://github.com/google/leveldb.git2:进入根目录 cdleveldb-master3:编译: CXXFLAGS=-
stdlib
cocoajin
·
2015-12-08 21:00
QT中使用快速排序
因为用习惯了,C++的std::sort,就算是C的时候也用得是
stdlib
.h中的qsort。手写板手写板的快排其实不难,只是自从用C++打ACM之后就很少裸敲了。
u013007900
·
2015-12-08 09:00
快速排序
qt
C语言 实现邻接矩阵存储图
// #include "stdafx.h" #include "
stdlib
.h" #include "conio.h" #define VERTEX_MAX 26 #define MAXVALUE
eatnothing
·
2015-12-03 19:00
C语言
图
邻接矩阵
C中的qsort函数和C++中的sort函数的理解与使用
说明:qsort函数是ANSIC标准中提供的,其声明在
stdlib
.h文件中,是根据二分法写
01TaiChi
·
2015-12-03 16:00
大写字母变小写,小写变大写,数字不输出
#include "stdio.h" #include "
stdlib
.h" void main() { char c; scanf("%c",&c); if(c>=65&
追梦途中
·
2015-12-02 14:34
大写字母变小写
小写变大写
数字不输出
C语言 实现链表
向顺序表插入元素的时候需要移动大量的数据链表采用动态存储分配,可以根据需要申请内存单元#include "stdafx.h" #include "
stdlib
.h" #include "string.h
eatnothing
·
2015-11-30 19:00
C语言 实现顺序表
所以可以用数组模拟一个顺序表、如果使用VS,请关闭安全检查,因为使用scanf函数的时候VS会推荐你使用scanf_s,且报错的话直接跳到input.c文件中#include "stdafx.h" #include "
stdlib
.h
eatnothing
·
2015-11-29 18:00
C语言
线性表
数据结构 栈的应用任意进制转换(c语言实现)
#include"
stdlib
.h" #include"stdio.h" typedefstructStack{ int*base; int*top; intstacksize; }SqStack;
catkint
·
2015-11-29 16:00
C语言
栈
应用
数据结构 单链表插入删除操作(c语言实现)
#include"
stdlib
.h" #include"stdio.h" typedefstructLNode{ intdata; structLNode*next; }LNode,*LinkList
catkint
·
2015-11-29 16:00
数据结构
C语言
单链表
第十二周学习报告
process.tar.gz压缩包中的代码三、学习任务(提示:请将要求学生完成的任务、测验或思考题列在此处)编译、运行、阅读、理解process.tar.gz压缩包中的代码一些头文件的用处:stdio.h标准输入输出
stdlib
.hC
20135314朱恒志
·
2015-11-29 15:00
第十二周学习报告
process.tar.gz压缩包中的代码三、学习任务(提示:请将要求学生完成的任务、测验或思考题列在此处)编译、运行、阅读、理解process.tar.gz压缩包中的代码一些头文件的用处:stdio.h标准输入输出
stdlib
.hC
20135314朱恒志
·
2015-11-29 15:00
在YouCompleteMe+Syntastic中添加和取消对C++11的支持
syntastic_cpp_compiler=‘g++‘ "changethecompilertog++tosupportc++11. letg:syntastic_cpp_compiler_options=‘-std=c++11-
stdlib
jnuyanfa
·
2015-11-28 21:00
vim
YouCompleteMe
三国志_数据库提取
extern "C" { #include "sqlite3.h" } #include "
stdlib
.h" #include "stdio.h" #include
#include
坤坤坤_
·
2015-11-23 11:00
QDemo之QtMessageHandler
摘自Qt文档里的片段:#include
#include
#include<
stdlib
.h> voidmyMessageOutput(QtMsgTypetype
JAnnn
·
2015-11-19 13:00
QDemo
C语言---多个线程读取文件
#include
#include
#include<
stdlib
.h> #include
#include
暖冰
·
2015-11-16 18:00
信息安全系统设计基础第十周学习总结
头文件的用处:stdio.h标准输入输出
stdlib
.hC标准函数库unistd.hUnix类系统定义符号常量fcntl.h定义了很多宏和open,fcntl函数原型sys/typ
20135322郑伟
·
2015-11-15 18:00
c语言:常用各种头文件的作用,如:#include <
stdlib
.h>
#include//设定插入点#include//字符处理#include//定义错误码#include//浮点数处理#include//文件输入输出#include//参数化输入输出#include//数据流输入输出#include//定义各种数据类型最值常量#include//定义本地化函数#include//定义数学函数#include//定义输入输出函数#include//定义杂项函数及内
岩枭
·
2015-11-14 16:00
c语言:常用各种头文件的作用
如:#include
redis源码笔记-dict.c
dict.c 1 #include "fmacros.h" 2 3 #include <stdio.h> 4 #include <
stdlib
.h
·
2015-11-13 23:03
redis
一颗完全二叉树,求其结点个数
就是对左右子树进行二分,找最后一层的最右边那个结点即可: #include <iostream> #include <cmath> #include <
stdlib
.h
·
2015-11-13 23:07
二叉树
随记一个C的时间加减
Centos6 x86_64 #include <time.h>#include <stdio.h>#include <string.h>#include <
stdlib
.h
·
2015-11-13 22:30
时间
C语言实现通讯录
span style="font-size:18px;">#include<stdio.h> #include<string.h> #include<
stdlib
.h
·
2015-11-13 22:06
C语言
C语言练手自己编写学生成绩管理系统
#include<stdio.h> #include<
stdlib
.h> /*定义学生结构体*/ struct Student { char ID[20];
·
2015-11-13 22:47
C语言
OTR-记一个关于参数传递的问题.
#include <stdio.h> #include <
stdlib
.h> #include <assert.h> #include <string.h
·
2015-11-13 22:47
参数传递
字符串匹配算法 之 基于DFA(确定性有限自动机)
Deterministic_finite_automaton 自动机在字符串匹配中的应用 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h
·
2015-11-13 22:27
字符串
[c/c++] c 操作mysql数据库
输出mysql版本 1 #include <my_global.h> 2 #include <mysql.h> 3 #include <
stdlib
.h>
·
2015-11-13 22:08
mysql
[c/c++] c 操作mysql数据库
mysql数据库 输出mysql版本 1 #include <my_global.h> 2 #include <mysql.h> 3 #include <
stdlib
.h
·
2015-11-13 22:14
mysql
顺序栈、链栈基本操作
.// #include "stdafx.h"#include "stdio.h"#include "
stdlib
.h&
·
2015-11-13 22:05
基本操作
顺序队列基本操作
#include "stdafx.h"#include "stdio.h"#include "
stdlib
.h"
·
2015-11-13 22:05
基本操作
图的深度优先遍历(堆栈实现和非堆栈实现)
.// #include "stdafx.h"#include "
stdlib
.h" //如:FROMHEAD = 1,则用头插法;否则:则用尾插法#define
·
2015-11-13 22:04
遍历
POJ 2418 Hardwood Species( AVL-Tree )
#include <stdio.h> #include <
stdlib
.h> #include <math.h> #include <string.h
·
2015-11-13 22:06
tree
用qsort排序
#include<
stdlib
.h>//qsort的头文件 int a[100]={0,2,4,1,5,7,3,8,9}; //要排序的数组 struct Person//要排序的结构体 {
·
2015-11-13 22:52
sort
C / ANSI-C examples (example source code) Organized by topic
example source code) Organized by topic Screenshots stdio.h
stdlib
.h
·
2015-11-13 22:03
example
C / ANSI-C examples (example source code) Organized by topic
example source code) Organized by topic Screenshots stdio.h
stdlib
.h
·
2015-11-13 22:02
example
用长整数求取普通整数的阶乘
2001年10月3日(17:00:00-18:30:00) 内容:完成用长整数求取普通整数的阶乘*/ #include "stdafx.h"#include "
stdlib
·
2015-11-13 22:27
阶乘
链表c语言实现
链表(c语言实现)--------------小练习 View Code #include <stdio.h>#include <
stdlib
.h
·
2015-11-13 22:38
数据结构
C语言
C语言写的一段溢出代码
*/ #include <stdio.h> #include <
stdlib
.h>
·
2015-11-13 22:05
C语言
HDU 2063 过山车 二分图题解
#include <stdio.h> #include <
stdlib
.h> int K, M, N, a,
·
2015-11-13 21:43
HDU
iphone-common-codes-ccteam源代码 CCRandom.m
//#import "CCRandom.h"#import <
stdlib
.h>#import <mach/mach_time.h>#impo
·
2015-11-13 21:53
iPhone
最大子序列和
#include <stdio.h> #include <
stdlib
.h> int main() { int this_sum, max_sum, old_first, old_last
·
2015-11-13 21:44
序列
个人实现的一个简单的蜗牛矩阵(c语言)
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 int 4 main(void) 5 { 6 int n,m;
·
2015-11-13 21:49
C语言
c语言编写的生成泊松分布随机数
#include<stdio.h> #include<
stdlib
.h> #include<math.h> double U_Random();int possion
·
2015-11-13 21:26
C语言
根据二叉树的前序遍历和中序遍历结果重建二叉树
以下为实例程序: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 4 typedef struct BinaryTreeNode
·
2015-11-13 20:45
二叉树
C语言实现全排列
实现全排列,递归实现 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 int n=0; 4 5 void swap
·
2015-11-13 20:04
C语言
上一页
32
33
34
35
36
37
38
39
下一页
按字母分类:
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
其他