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
问题一百三十七:计算坐标上两点之间的距离
#include <stdio.h> #include <
stdlib
.h> #include <math.h> float distance(int
·
2015-11-13 19:51
问题
linux下摄像头图像数据的获取
2.6.32内核,V4L2架构 亲自测试可用 在友善之臂MINI2440开发板上测试可用 源程序如下 #include <stdio.h> #include <
stdlib
.h
·
2015-11-13 19:31
linux
生成排列程序
具体的可以参考http://zh.wikipedia.org/wiki/%E6%8E%92%E5%88%97 #include <stdio.h> #include <
stdlib
.h
·
2015-11-13 18:56
生成
标C编程笔记day06 动态分配内存、函数指针、可变长度參数
动态分配内存:头文件
stdlib
.h malloc:分配内存 calloc:分配内存,并清零  
·
2015-11-13 18:54
函数指针
参观地点
*/ #include"stdio.h" #include"
stdlib
.h" #includ
·
2015-11-13 18:32
SystemTimeToFileTime、FileTimeToLocalFileTime、LocalFileTimeToFileTime三函数的跨平台实现
// #include "stdafx.h" #include <
stdlib
.h> #include <stdio.h>
·
2015-11-13 18:29
System
二叉树的层次访问
#include<stdio.h> #include<
stdlib
.h> #define OVERFLOW -1 #define OK 1 #define ERROR
·
2015-11-13 18:28
二叉树
GeeksforGeeks - Adjacency List邻接矩阵C\C++代码
#pragma once #include <stdio.h> #include <
stdlib
.h> class AdjListGr
·
2015-11-13 17:22
list
HDU4540+DP
个数的MinVal /* DP&简单题 */ #include<stdio.h> #include<string.h> #include<
stdlib
.h
·
2015-11-13 17:50
HDU
有向网 无向网的创建(数组表示法) 和深度优先访问
#include <stdio.h> #include <
stdlib
.h> #define OK 1 #define ERROR -1 #define OVERFLOW
·
2015-11-13 17:00
数组
C++封装的用于存放内存块的双向循环列表
直接进入话题吧: 如题: 结构头文件 #include <stdio.h> #include <
stdlib
.h> #define uint unsigned
·
2015-11-13 17:42
C++
C语言单链表创建,插入,删除
#include <stdio.h> #include <
stdlib
.h> typedef struct Node { int data; //数据域 Node
·
2015-11-13 17:22
C语言
从一道题谈C++中构造函数调用构造函数
#include <
stdlib
.h > #include < iostream > using namespace  
·
2015-11-13 17:34
构造函数
从一道题谈C++中构造函数调用构造函数
#include <
stdlib
.h > #include < iostream > using namespace  
·
2015-11-13 17:12
构造函数
hdu2098-分拆素数和
,数据不是很大,却用了打表; #include "stdio.h" #include "string.h" #include "
stdlib
.h
·
2015-11-13 17:59
HDU
【算法】插入排序
算法代码为: #include <stdio.h> #include <
stdlib
.h> void insertationSort();//插入排序
·
2015-11-13 17:33
插入排序
C socket demo
server.c #include <stdio.h> #include <sys/socket.h> #include <arpa/inet.h> #include <
stdlib
.h
·
2015-11-13 17:20
socket
poj2187 Beauty Contest 凸包求点集的直径
#include<stdio.h>#include<
stdlib
.h>#
·
2015-11-13 16:18
test
poj1422 Air Raid 二分匹配之最小路径覆盖
根据定理:最小路径覆盖=顶点数-最大匹配数 Source Code #include<stdio.h>#include<
stdlib
.h>#include<string.h
·
2015-11-13 16:07
raid
hdu 2122 (prime 最小生成树)
2013-04-23 */ #include"stdio.h" #include"string.h" #include"
stdlib
.h
·
2015-11-13 16:05
最小生成树
poj 1654 多边形面积计算
c++提交 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 int dir[10][2]={{0,0},{-1,-1},{0,
·
2015-11-13 16:20
poj
poj 1474 Video Surveillance 半平面交
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<cmath> 4 #include<algorithm
·
2015-11-13 16:16
video
poj 1556 The Doors 线段相交判断+最短路
#include<stdio.h> #include<
stdlib
·
2015-11-13 16:10
poj
poj 2653 Pick-up sticks 线段相交判断
#include<stdio.h> #include<
stdlib
.h> #include<string.h> #inc
·
2015-11-13 16:08
poj
poj 2318 TOYS 叉乘 二分查找
#include<stdio.h>#include<
stdlib
.h>#include<string.h>#include<iostream>using
·
2015-11-13 16:01
二分查找
poj 2398 Toy Storage 叉乘
(poj2318解题报告)#include<stdio.h>#include<
stdlib
.h>#include<string.h>#include<iostream
·
2015-11-13 16:00
poj
hdu 2102 A计划 bsf搜索
#include <iostream>#include <stdio.h>#include<
stdlib
.h>#include<s
·
2015-11-13 16:51
HDU
hdu 2614 Beat
pid=2614 #include<stdio.h> #include<
stdlib
.h> int p[105][105],n,max,flag[105]; void
·
2015-11-13 16:49
HDU
hdu 1016 Prime Ring Problem 深搜
本人用深搜递归水过 250ms #include <stdio.h>#include<
stdlib
.h>#include<string.h>#include
·
2015-11-13 16:46
Prim
hdu 3750 Guess Game 菜鸟杯
pid=3750 #include<stdio.h>#include<
stdlib
.h>main(){ double i,j,ans
·
2015-11-13 16:44
game
hdu 3744 A Runing Game 菜鸟杯
pid=3744 #include<stdio.h>#include<
stdlib
.h>main(){ long 
·
2015-11-13 16:44
game
hdu 3747 Download 菜鸟杯
pid=3747 #include <iostream>#include<stdio.h>#include<
stdlib
.h>using namespace std
·
2015-11-13 16:43
download
hdu 3752 Is the one been second-killed first? 菜鸟杯
pid=3752 #include<stdio.h>#include<
stdlib
.h>main(){ int t,
·
2015-11-13 16:42
first
hdu 1241 Oil Deposits 简单八个方向的DFS
求最多有多少个油田; #include <stdio.h>#include <string.h>#include<
stdlib
.h>#incl
·
2015-11-13 16:40
HDU
hdu 1072 Nightmare BFS搜索(可重走)
#include<stdio.h>#include<
stdlib
.h&g
·
2015-11-13 16:39
HDU
hdu 1253 胜利大逃亡 三维 BFS+剪技
pid=1253 #include<stdio.h>#include<
stdlib
.h>#include<queue>#include
·
2015-11-13 16:36
HDU
poj3461 Oulipo KMP算法
Source Code #include <stdio.h>#include <
stdlib
.h>#include<string.h>#include<iostream
·
2015-11-13 16:29
poj
poj 2954 Triangle Pick公式
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<cstdio> 4 #include<ve
·
2015-11-13 16:46
poj
用fcntl()设置堵塞函数的堵塞性质
#include <stdio.h> #include <
stdlib
.h> #include <string.h> #include <sys/types.h
·
2015-11-13 16:45
函数
poj 2418 Hardwood Species(字典树)
树,这次学到了如何输出 View Code 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h
·
2015-11-13 16:16
poj
数据结构-单链队列相关操作算法
程序代码如下: #include <stdio.h> #include <
stdlib
.h> #define OVERFLOW -2 #define OK 1 #
·
2015-11-13 15:44
数据结构
数据结构-双向循环链表(无头结点)相关算法
#include <stdio.h>#include <
stdlib
.h>#define OVERFLOW -2#define OK 1#define ERROR 0//此双向循环链表无头结点
·
2015-11-13 15:43
数据结构
数据结构-栈有关操作算法
程序代码如下: 1 #include <stdio.h> 2 #include <
stdlib
.h> 3 4 #define STACK_INIT_SIZE
·
2015-11-13 15:43
数据结构
数据结构-单向链表相关算法
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #define OVERFLOW -2 4 #define OK
·
2015-11-13 15:42
数据结构
数据结构-顺序表相关算法
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 4 #define LIST_INIT_SIZE 100
·
2015-11-13 15:41
数据结构
链表的实现
#include<iostream> #include<
stdlib
.h> using namespace std; typedef int ElemType; typedef
·
2015-11-13 15:36
链表
队列的实现
#include<
stdlib
.h> #include<string.h> #include<stdio.h> typedef int Item; typedef
·
2015-11-13 15:34
队列
最小生成树判断唯一
然后在依次枚举删除最小生成树中的每一条边,判断是否还能构成一个新的最小生成树,且权值和与初始的权值和相等,若能构成则不唯一 #include<stdio.h> #include<
stdlib
.h
·
2015-11-13 15:42
最小生成树
setjmp(),longjmp 例子
Monkey phone:13410905075 #include <stdio.h> #include <setjmp.h> #include <
stdlib
.h
·
2015-11-13 15:59
long
链表(建立+插入+删除+输出)
#include <stdio.h> #include <
stdlib
.h> struct node { int date; node *next;
·
2015-11-13 15:41
链表
上一页
33
34
35
36
37
38
39
40
下一页
按字母分类:
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
其他