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<time.h> int
·
2015-10-31 11:04
四则运算
20150324 练习一 四则运算
以下是我的测试的数据: 以下是源代码: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include
·
2015-10-31 11:47
四则运算
字符变量——转义字符
转义字符 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 int main() 4 { 5 printf
·
2015-10-31 11:17
转义字符
A/B的困扰
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 int main() 4 { 5 int a,b; 6 scanf
·
2015-10-31 11:17
a
在树中寻找两个节点的最低公共祖先
1 //通过寻找从根至节点的路径,取两个节点路径上的最后一个相同的节点,即为最低公共祖先 2 #include <time.h> 3 #include <
stdlib
.h
·
2015-10-31 11:53
节点
Codeforces Round #168 (Div. 2)
View Code 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<string.h> 4
·
2015-10-31 11:07
codeforces
Codeforces Round #171 (Div. 2)
View Code 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<string.h> 4
·
2015-10-31 11:07
codeforces
hdoj1412搬寝室
#include < iostream > #include < stdio.h > #include < math.h > #include <
stdlib
.h
·
2015-10-31 11:43
OJ
C语言 rand()函数的用法
rand()(产生随机数) 相关函数 srand() 表头文件 #include<
stdlib
.h> 定义函数 int rand()(void) 函数说明
·
2015-10-31 11:10
C语言
数据结构。顺序表
#include <stdio.h>#include <
stdlib
.h>#define LIST_INIT_SIZE 100#define LIST_INCREMENT 10typedef
·
2015-10-31 11:55
数据结构
由前序和中序遍历结果构建二叉树
#include <stdio.h> #include <string.h> #include <
stdlib
.h> #define N  
·
2015-10-31 11:15
二叉树
pku1979
#include < stdio.h > #include <
stdlib
.h > #include < string .h > int visited
·
2015-10-31 11:14
pku
深入浅出谈CUDA-CUDA详解(3)
首先,把程序最前面的 include 部份改成: #include <stdio.h>#include <
stdlib
.h>#include <cuda_runtime.h
·
2015-10-31 11:52
详解
C++如何判断大小端
bbs.chinaunix.net/thread-1257205-1-1.html #include <stdio.h> #include <string.h> #include <
stdlib
.h
·
2015-10-31 11:01
C++
平衡二叉树
1 #include<time.h> 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 //左子树比右子树高一
·
2015-10-31 11:11
二叉树
二叉树的遍历方法
1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h> 4 #define
·
2015-10-31 11:09
二叉树
c语言 断点续传
#include <
stdlib
.h> #include <unistd.h> #include <string.h> #include <strings.h&
·
2015-10-31 11:59
断点续传
Linux下基于C实现的socket简单文件下载实例
此实例是客户端向服务器端下载文件: 服务器端代码实现: #include <stdio.h> #include <
stdlib
.h> #include <string.h
·
2015-10-31 11:58
socket
Linux下基于C实现的socket简单文件上传实例
此实例是客户端向服务器端传送文件 服务器端代码实现: #include <stdio.h> #include <
stdlib
.h> #include <string.h
·
2015-10-31 11:58
socket
CGI C 设置 读取 cookies
#include <stdio.h> #include "cgic.h " #include <string.h> #include <
stdlib
.h
·
2015-10-31 11:57
Cookies
POJ-2684 Polygonal Line Search 计算几何基础
1 //STATUS:C++_AC_0MS_192KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:24
search
POJ-1338 Ugly Numbers 递推
1 //STATUS:C++_AC_0MS_172KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:23
number
POJ-1548 A Round Peg in a Ground Hole 凸多边形
1 //STATUS:C++_AC_0MS_192KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:22
round
POJ-1408 Fishnet 枚举+叉积
1 //STATUS:C++_AC_32MS_208KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:22
poj
POJ-1019 Number Sequence 数学
1 //STATUS:C++_AC_0MS_428KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:22
sequence
POJ-1942 Paths on a Grid 组合数
1 //STATUS:C++_AC_16MS_184KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:22
grid
POJ-2533 Longest Ordered Subsequence LIS
1 //STATUS:C++_AC_32MS_184KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:22
sequence
POJ-2635 The Embarrassed Cryptographer 万进制+素数筛选
1 //STATUS:C++_AC_938MS_4432KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include&
·
2015-10-31 11:22
Graph
POJ-2031 Building a Space Station 最小生成树
1 //STATUS:C++_AC_0MS_252KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:22
Build
POJ-3450 Corporate Identity KMP+枚举
1 //STATUS:C++_AC_516MS_380KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #inclu
·
2015-10-31 11:21
entity
POJ-2513 Colored Sticks 欧拉回路
1 //STATUS:C++_AC_1266MS_79348KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #i
·
2015-10-31 11:21
color
POJ-1573 Robot Motion 模拟水题
id=1573 随便模拟,水水~ 1 //STATUS:G++_AC_0MS_696KB 2 #include<stdio.h> 3 #include<
stdlib
.h
·
2015-10-31 11:20
robot
POJ-2632 Crashing Robots 模拟水题
1 //STATUS:C++_AC_0MS_212KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:20
Crash
POJ-2027 No Brainer 水题
1 //STATUS:C++_AC_0MS_164KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include<
·
2015-10-31 11:20
poj
POJ-1035 Spell checker map标记
1 //STATUS:C++_AC_360MS_1132KB 2 #include<stdio.h> 3 #include<
stdlib
.h> 4 #include&
·
2015-10-31 11:20
check
看来作为码农得天天写代码啊[hdu1228]
stdio.h > 2 #include < string .h > 3 #include <
stdlib
.h
·
2015-10-31 11:39
HDU
顺序查找 sequential find
#include <stdio.h> #include <
stdlib
.h> typedef int KeyType; struct ElemType{ int
·
2015-10-31 11:25
find
#define 宏与#,##
#include <stdio.h> #include <
stdlib
.h> //在#define中,标准只定义了#和##两种操作。
·
2015-10-31 11:21
in
类型转换【atoi,atol,strtod,strtol,strtoul】
atof(将字符串转换成浮点型数) #include <
stdlib
.h> 定义函数  
·
2015-10-31 11:00
类型转换
02.由一个程序开始(二)
1.1.2 预处理指令#include <stdio.h> ----->预处理器用stdio.h的库函数头文件的内容替换此条语句#include <
stdlib
.h&
·
2015-10-31 11:09
程序
shell c 混合编程 system 输出数据到变量
shell c 混合编程 system 输出数据到变量 方法一: (popen) #include <stdio.h>#include <
stdlib
.h>int main
·
2015-10-31 11:32
System
c/c++ helloworld
: #include <errno.h>#include <math.h>#include <stdio.h>#include <
stdlib
.h
·
2015-10-31 11:30
helloworld
快速排序算法
#include "stdafx.h"#include "
stdlib
.h"#include "stdio.h"#include "
·
2015-10-31 11:03
快速排序
产生0-1随机数 VC++
#include "stdafx.h"#include "
stdlib
.h"#include "time.h" int main
·
2015-10-31 11:03
vc++
// 产生10到100随机数
// 产生10到100随机数// #include "stdafx.h"#include "
stdlib
.h"#include "time.h"
·
2015-10-31 11:03
随机数
建立有序链表算法
#include "stdafx.h"#include "
stdlib
.h" typedef struct Node{ int data; 
·
2015-10-31 11:03
算法
命令控制台学生管理系统 c语言链表实现
文件内容删除 3.查询 4.排序 很简单 重点是链表操作的熟练 文件操作 1 #include "stdio.h" 2 #include "
stdlib
.h
·
2015-10-31 11:37
C语言
C/C++对汉字的读取
//怎么读取汉字 #include<stdio.h> #include<
stdlib
.h> int main() { FILE *fp; if((fp=fopen
·
2015-10-31 11:36
c/c++
hdu1828 线段树+离散化+扫描线
#include<stdio.h> #include<
stdlib
.h> #include<algorithm> using namespace std; #
·
2015-10-31 11:01
HDU
POJ 2761 Feed the dogs
#include<stdio.h>#include<string.h>#include<
stdlib
.h>#define MA
·
2015-10-31 11:48
poj
上一页
79
80
81
82
83
84
85
86
下一页
按字母分类:
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
其他