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
C/C++深度copy和浅copy
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<
stdlib
.h> #include<string.h
·
2015-11-11 08:26
c/c++
C/C++ 一段代码区分数组指针|指针数组|函数指针|函数指针数组
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<windows.h> 4 /* 举列子说明什么是函数指针
·
2015-11-11 08:25
c/c++
C/C++ 如何劫持别人家的命令||函数||程序(只能对于window而言)
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #inclu
·
2015-11-11 08:24
window
hdu2083 简易版之最短距离
B的距离=|AB|,而AB外的一点到A的距离+到B的距离>|AB|; #include<math.h> #include<stdio.h> #include<
stdlib
.h
·
2015-11-11 08:38
HDU
readline库的使用
接口十分简单,readline和addhistory: #include <
stdlib
.h> #include <stdio.h> #include <unistd.h
·
2015-11-11 08:25
read
练习3.21 一个数组两个站栈
#include<stdio.h> #include<
stdlib
.h> struct Node; typedef struct Node *PtrToDStack;
·
2015-11-11 08:34
数组
习题3.18 检测平衡符号(/* */ 不知怎么做)
/* 检测平衡符号 */ #include<stdio.h> #include<
stdlib
.h> struct stack; typedef struct stack
·
2015-11-11 08:32
习题3.15 自调整表Find例程
#include<stdio.h> #include<
stdlib
.h> typedef int * List; /* 自调整表的Find数组实现 */ int Find
·
2015-11-11 08:30
find
Linux c连接 postgresql数据库
#include<stdio.h> #include<
stdlib
.h> #include<libpq-fe.h> #include <string.h&
·
2015-11-11 08:12
PostgreSQL
自己以前写的函数(总结一下,都是学习Unix高级编成练手的)
#include <
stdlib
.h> #include <stdio.h> char* getEnvWrapper(char* key) { char* value
·
2015-11-11 08:13
unix
HDU1862EXCEL排序
整道题的思路很简单啦,我用的是快排,比较的原则也给得很清楚,不必多言,我没有用
stdlib
的快排,也没有用scanf,printf等IO,因为我觉得没什么必要啦。
·
2015-11-11 08:01
Excel
Kill命令模拟1
#include<sys/types.h> #include<signal.h> #include<stdio.h> #include<
stdlib
.h&
·
2015-11-11 08:48
kill
[链表]带头结点的链表的创建、查找、插入、删除
#include <stdio.h> #include <
stdlib
.h> typedef struct node { int data; struct
·
2015-11-11 08:01
链表
[链表]创建链表过程中引发的经典错误——通过指针参数申请动态内存
#include <stdio.h> #include <
stdlib
.h>// 用malloc要包含这个头文件 typedef struct node {
·
2015-11-11 08:00
内存
(2015年郑州轻工业学院ACM校赛题) G 矩阵
<iostream> #include<stack> #include<queue> #include<math.h> #include<
stdlib
.h
·
2015-11-11 08:24
ACM
通过文件操作Oracle数据库
#include<string>#include<
stdlib
.h>#include<string.h>#include<unistd.h>#include
·
2015-11-11 08:14
oracle数据库
HDU 1856 More is better(并查集+离散化)
;iostream> #include <cstdio> #include <string> #include <cstring> #include <
stdlib
.h
·
2015-11-11 07:26
more
ZOJ 2544
-11-16 17:00:04 Accepted 2544 C++ 0 180 VRS//水题//////////////// //#include<
stdlib
.h
·
2015-11-11 07:42
ZOJ
10474 - Where is the Marble?
排序,检索; 使用 bsearch 的 cmp 不能只返回 -1 或 1 (可能是要用差进行比较); # include <stdio.h> # include <
stdlib
.h
·
2015-11-11 07:43
where
HDOJ 2093 sscanf的使用,字符串对齐,快排
pid=2093 sscanf的使用,字符串对齐,快排; # include <stdio.h> # include <
stdlib
.h> # define N 1005
·
2015-11-11 07:41
scanf
HDOJ 2037 不相交区间的最大个数
# include <stdio.h> # include <
stdlib
.h> # define N 105 int n; int t[N][2]; int
·
2015-11-11 07:38
OJ
HDOJ 1875 畅通工程再续
kruskal的返回类型写成了int,查了好几遍都没发现问题; 还是MST,kruskal,并查集,路径压缩; # include <stdio.h> # include <
stdlib
.h
·
2015-11-11 07:16
OJ
HDOJ 1863 畅通工程
# include <stdio.h> # include <
stdlib
.h> # define MAXN 105 int n, m;
·
2015-11-11 07:14
OJ
已有a,b两个链表,每个链表中的结点包括学号、成绩。要求把两个链表合并,按学号升序排列
代码如下: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<malloc.h> 4 5
·
2015-11-11 07:23
链表
计算某天在当年是第几天
1.先贴我自己的代码 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 4 int main(){ 5 setbuf
·
2015-11-11 07:22
计算
对单向链表的综合操作
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<malloc.h> 4 5 #define
·
2015-11-11 07:20
链表
用fscanf()从文件取数据时,如何判断文件结束
有两种方法 1.使用feof()函数 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<string.h
·
2015-11-11 07:19
scanf
单向链表操作:新建,输出,删除,插入
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<malloc.h> 4 5 #define
·
2015-11-11 07:19
链表
使用fwrite()函数和fprintf()函数输出数据到文件时的区别
屡次调试后,我编好的程序: 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #define FWRITE 4
·
2015-11-11 07:18
printf
编写一函数用来实现左右循环移位。函数原型为move(value,n);n>0时右移n位,n<0时左移|n|位。
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 4 int main(){ 5 setbuf(stdout,NULL);
·
2015-11-11 07:16
value
编写一个函数,对一个16位的二进制数取出它的奇数位(即从左边起,第1,3,5,...,15位)。
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 4 int main(){ 5 setvbuf(stdout,NULL
·
2015-11-11 07:16
二进制
写一个函数,实现两个字符串的比较。即实现strcmp函数,s1=s2时返回0,s1!=s2时返回二者第一个不同字符的ASCII值。
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 4 int main(){ 5 setvbuf(stdout,NULL
·
2015-11-11 07:14
ASCII
输入一个字符串,内有数字和非数字字符,将其中连续的数字作为一个整数,依次存放到一数组a中。统计共有多少个整数,并输出这些数。
#include<stdio.h> #include<
stdlib
.h> #include<math.h> #include<string.h
·
2015-11-11 07:13
字符串
输入一行字符,统计其中有多少个单词,单词之间用空格分隔开
1 #include<stdio.h> 2 #include<
stdlib
.h> 3 #include<string.h> 4
·
2015-11-11 07:07
字符
百度笔试题----memmove
*/ #include < stdio.h > #include <
stdlib
.h >
·
2015-11-11 07:57
move
POJ 1321 棋盘问题
1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4 int n, k; 5
·
2015-11-11 07:32
poj
SGU 223 Little Kings
1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4 const
·
2015-11-11 07:30
it
SGU 222 Little Rooks
排列组合 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4 int n
·
2015-11-11 07:30
OO
枚举全排列
#include <stdio.h> #include <
stdlib
.h> void f(int n,int *a,int cur) {  
·
2015-11-11 06:06
全排列
c++线程实现
Code #include "stdafx.h" #include <stdio.h> #include <
stdlib
.h
·
2015-11-11 06:11
C++
NYOJ 205 求余数
这是为什么要 乘以9了 View Code 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h
·
2015-11-11 06:42
OJ
NYOJ 364 田忌赛马
View Code 1 #include<stdio.h> 2 #include<
stdlib
.h> 3 4 int T[1001]; 5 int K[1001]; 6
·
2015-11-11 06:42
64
bfs 邻接表
#include<stdio.h> #include<
stdlib
.h> #include<string.h> struct node { int
·
2015-11-11 06:38
bfs
C语言“快速排序”函数写法
代码是:C语言中快速排的写法,要加入头文件 <
stdlib
.h> qsort(数组名, 长度, 数据类型大小
·
2015-11-11 06:00
快速排序
B
#include <stdio.h> #include <string.h> #include <
stdlib
.h> char s[10005]; int
·
2015-11-11 06:55
B
原串与其逆序串 对应位置且 连续最大长度
#include <stdio.h> #include <string.h> #include <
stdlib
.h> #include <algorithm
·
2015-11-11 06:51
长度
最大流模板 ISAP
邻接矩阵: 1 #include<stdio.h> 2 #include<string.h> 3 #include<
stdlib
.h> 4 #define
·
2015-11-11 06:36
SAP
操作系统页面置换算法模拟
1.最佳淘汰算法(OPT) 2.先进先出的算法(FIFO) 3.最近最久未使用算法(LRU) #include <stdio.h> #include <
stdlib
.h
·
2015-11-11 06:00
操作系统
unix编程——管道
一个简单父子进程通信的例程: pipe.h: #include <unistd.h>#include <
stdlib
.h>#include <stdio.h>void
·
2015-11-11 06:48
unix
(二)实验2-1-1 系统调用方式访问文件----权限问题
系统调用方式访问文件 二、我的实验步骤: 我将光盘里的代码通过服务器下载到/home/pm目录下, 实验代码如下: #include <stdio.h> #include <
stdlib
.h
·
2015-11-11 06:12
文件
上一页
59
60
61
62
63
64
65
66
下一页
按字母分类:
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
其他