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
Linux--进程组、会话、守护进程
两个函数 getpgid(0)=getpgrp() eg:显示子进程与父进程的进程组id 1 #include <stdio.h> 2 #include <
stdlib
.h
·
2015-11-12 12:55
linux
Linux环境下HTTP服务器demo
#include <stdio.h> #include <
stdlib
.h> #include <string.h> #include <netinet/
·
2015-11-12 12:18
HTTP服务器
A*算法的一份C语言实现品!
#include ”stdio.h“ #include “conio.h” #include ”assert.h“ #include “
stdlib
.h” #define MAPMAXSIZE
·
2015-11-12 12:26
C语言
c 操作文件:实现关键词搜索
(若实现了在文档中说明) 1 #include "stdio.h" 2 #include "string.h" 3 #include "
stdlib
.h
·
2015-11-12 12:47
操作文件
数据结构C语言实现系列——线性表(线性表链接存储(单链表))
#include <stdio.h>#include <
stdlib
.h>#define NN 12#define MM 20typedef int elemType ;/***
·
2015-11-12 11:42
数据结构
简单文本处理
处理后期望为: T= 6 0 2 2 3 4 5 简单来说,就是数据个数T不改变,但是对应内容作出改变~ 1 #include<stdio.h> 2 #include<
stdlib
.h
·
2015-11-12 11:41
处理
从文件中读取数据
#include<stdio.h> #include<string.h> #include<
stdlib
.h> int main() { char
·
2015-11-12 11:28
读取数据
c++11中用_sntprintf代替_stprintf
wsprintf和swprintf比较,其实这两个函数对用用户来说是一样的,只不过前者是在 Winbase.h声明;后者是在stdio.h,
stdlib
.h文件中声明。
·
2015-11-12 11:47
printf
POJ3279 - Fliptile
代码 #include<stdio.h> #include<
stdlib
.h&g
·
2015-11-12 11:06
poj
HDOJ1003 - Max Sum
#include<stdio.h> #include<
stdlib
.h> #include<string.h> #define MAXN 100005 typedef
·
2015-11-12 11:05
max
Exe文件导入api表,导入DLL和段表的输出统计
include<windows.h>#include<stdio.h>#include<iostream>#include<winnt.h>#include<
stdlib
.h
·
2015-11-12 11:19
api
杭电 2096
#include<stdio.h> #include<string.h> #include<
stdlib
.h> int main() { int t,a,
·
2015-11-12 11:45
杭电
杭电 1241 Oil Deposits
#include<stdio.h> #include<string.h> #include<
stdlib
.h> int n,m; int hash[105][
·
2015-11-12 11:44
OS
杭电 1312 Red and Black
#include<stdio.h> #include<string.h> #include<
stdlib
.h> int n,m; int hash[30][30
·
2015-11-12 11:44
杭电
杭电 2952 Counting Sheep
#include<stdio.h> #include<string.h> #include<
stdlib
.h> int n,m; char map[105][
·
2015-11-12 11:43
count
hash桶
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include "chain.c" //include
·
2015-11-12 11:17
hash
poj 2037 今年暑假不AC
简单贪心,选择不相交区间: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 4 int n, s[25], e[25],
·
2015-11-12 10:20
poj
poj 2528 Mayor's posters
1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4 #define MAXN
·
2015-11-12 10:19
post
scons构建自己的一个简单的程序
里面的程序很简单: #include<stdio.h>#include<
stdlib
.h> int main(int argc, char* argv[]){printf(&
·
2015-11-12 10:03
程序
编程之美-构造数独
#include <stdio.h> #include <
stdlib
.h> #include <time.h> int main() {
·
2015-11-12 10:16
编程之美
编程之美-构造数独(1)
回溯法: #include <stdio.h> #include <
stdlib
.h> #include <time.h> int isShudu(int
·
2015-11-12 10:16
编程之美
随机种子关于rand和srand函数使用的一点心得
每日一贴,今天的内容关键字为随机种子 在c语言里面,两个函数包括在<
stdlib
.h>头文件里面,c++里面,标准库<
·
2015-11-12 10:29
函数
C++ _countf
所在头文件:
stdlib
.
·
2015-11-12 10:55
count
回文串问题
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <string.h> 4 5 /
·
2015-11-12 10:35
问题
循环队列的实现
循环队列 #include<iostream.h> #include <
stdlib
.h> #include <malloc.h> #include<stdio.h
·
2015-11-12 10:03
队列
C 中随机数
在C中取随机数所需要对函数是: int rand ( void ); void srand ( unsigned int n); 备注:必须包含该头文件#include <
stdlib
.h
·
2015-11-12 10:42
随机数
传参问题
#include <stdio.h> #include <
stdlib
.h> void getmemory(char *p) //函数的参数是局部变量,在这里给它分配内存还在
·
2015-11-12 10:42
问题
从一堆数中随机取出一些值的方法
从一堆数中随机取出一些值的方法: #include <sstream> #include <iostream> #include <vector> #include <
stdlib
.h
·
2015-11-12 10:40
方法
单链表的排序
代码: 预编译 #include <
stdlib
.h> #include <stdio.h> #define status int #define FALSE
·
2015-11-12 10:43
单链表
单链表的插入
预编译 #include <stdio.h> #include <
stdlib
.h> #define status int #define TRUE 1 #define
·
2015-11-12 10:42
单链表
双链表的插入
预编译 #include <
stdlib
.h> #include <stdio.h> #define status int #define TRUE 1 #define
·
2015-11-12 10:41
链表
Linux网络编程一步一步学-异步通讯聊天程序select
Linux网络编程一步一步学-异步通讯聊天程序select Client #include <stdio.h> #include <
stdlib
.h> #include
·
2015-11-12 10:20
select
ZOJ 3600 Taxi Fare(精度误差)
problemCode=3600 思路:注意精度向上进位 #include<cstdio> #include<cstring> #include<
stdlib
.h
·
2015-11-12 10:18
360
链表 编写链表将数字倒序输出的C语言程序。(我们C语言老师讲的!)
#include "stdio.h"#include "
stdlib
.h"struct shao{ int num; struct shao *next;};void
·
2015-11-12 09:52
C语言
Codeforces Beta Round #96 (Div. 2) (A-E)
2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<
stdlib
.h
·
2015-11-12 09:48
codeforces
hdu3433A Task Process( 二分dp)
iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<
stdlib
.h
·
2015-11-12 09:40
process
Codeforces Round #138 (Div. 1)
2 #include<cstring> 3 #include<algorithm> 4 #include<cstdio> 5 #include<
stdlib
.h
·
2015-11-12 09:33
codeforces
sdut1642Simple Arithmetics(模拟)
#include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<
stdlib
·
2015-11-12 09:26
simple
sdut1283Five in a Row, Again
2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<
stdlib
.h
·
2015-11-12 09:25
in
URAL1410. Crack
2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<
stdlib
.h
·
2015-11-12 09:21
rack
hdu1247Hat’s Words(trie树)
先找某个单词是否为一个单词的前缀 再用 这个单词减去前缀 判断剩下的部分是否为一个单词 View Code 1 #include <iostream> 2 #include<
stdlib
.h
·
2015-11-12 09:03
word
三分
CZ写的三分模板 View Code 1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h
·
2015-11-12 09:01
[怎么总是忘啊!]treap插入、删除、查找
//treap 7.30 #include<stdio.h> #include<
stdlib
.h> #define mmm 1000000 struct ss {
·
2015-11-12 09:12
删除
写壳笔记一(加节表)
.386.model flat,stdcalloption casemap:none include kernel32.inc;include user32.incinclude
Stdlib
.Inc
·
2015-11-12 09:57
笔记
Tyvj 1079 数字三角形3(DP)
1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h> 4 #define INF
·
2015-11-12 09:15
dp
HDU 1561 The more, The Better(树形DP)
1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h> 4 struct node
·
2015-11-12 09:12
more
POJ 2018 Best Cow Fences(斜率优化+DP)
1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
·
2015-11-12 09:09
poj
HDU 2369 Broken Keyboard(乱搞)
1 #include <stdio.h> 2 #include <
stdlib
.h> 3 #include <string.h> 4 #define eps
·
2015-11-12 09:06
keyboard
BZOJ 1010: [HNOI2008]玩具装箱toy(DP+斜率优化)
1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h> 4 #define N
·
2015-11-12 09:03
2008
HDU 2061 An easy problem(水)
1 #include <stdio.h> 2 #include <string.h> 3 #include <
stdlib
.h> 4 #include &
·
2015-11-12 09:01
HDU
上一页
51
52
53
54
55
56
57
58
下一页
按字母分类:
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
其他