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
string.h
[置顶] 关于C++虚函数自己的理解
#include"iostream.h"#include"
string.h
"classXS{public: virt
wu10045125
·
2012-11-09 00:00
sizeof与strlen的区别,以及不同元素存储的位置,以及bss段及rodata段
#include"stdio.h"#include"
string.h
"constchar*a="123456";charb[]="123456";charc[10]="123456";intmain(intargc
zxzxy1988
·
2012-11-08 22:00
hdu4460
用了字典树,不过据说更暴力的、不用字典树的,也能ac-、-III 2011-11-08*/#include"stdio.h" #include"
string.h
Ice_Crazy
·
2012-11-08 19:00
hdu4463
2012-11-08*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #include"math.h" intpre[100]; structA
Ice_Crazy
·
2012-11-08 18:00
hdu4461
2012-11-08*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" intmain() { intT; intn,m; inti; intf
Ice_Crazy
·
2012-11-08 18:00
杂记之C语言函数strlen和操作符sizeof
头文件:
string.h
格式: strlen(字符数组名)功能: strlen所作的仅仅是一个计数器的工作,它从内存的某个位置(可以是字符串开头,中间某个位置,甚至是某个不确定的内存区域)开始扫描
citongke1
·
2012-11-07 15:00
杂记之C语言实现C++函数strstr
//来源于百度百科/*包含文件:
string.h
函数名:strstr函数原型:externchar*strstr(char*str1,char*str2);功能:找出str2字符串在str1字符串中第一次出现的位置
citongke1
·
2012-11-05 12:00
歌厅歌曲管理系统(转)用c语言实现的一个课程设计
完整的实现代码如下:#include"stdio.h" #include"stdlib.h" #include"
string.h
" //歌曲信息包括:歌名、演唱者、作
zxq1138634642
·
2012-10-31 21:00
hdu4451
2012-10-30*/#include"stdio.h" #include"
string.h
" intmain() { intn1,n2,n3; intans; intcount1[1111],count2
Ice_Crazy
·
2012-10-30 11:00
hdu4450
2012-10-30*/#include"stdio.h" #include"
string.h
" intmain() { intn; inti; intt; intans; while(scanf("%
Ice_Crazy
·
2012-10-30 09:00
hdu3836
2012-10-29*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #i
Ice_Crazy
·
2012-10-29 11:00
hdu2236
~~~ 注意把二分搜索当外循环、枚举当内循环,否则反过来的话有可能超时哦~ 2012-10-29*/#include"stdio.h" #include"
string.h
Ice_Crazy
·
2012-10-29 10:00
C标准库函数::
string.h
::strlen的实现
size_t /* 返回字符串的长度 */ my_strlen( const char* src /* 被计算长度的字符串 */ ) { const char* ptr = src; /* 定义一个指针指向源字符串 */ while(*ptr) /* 把指针 ptr 定位到源字符串的结尾的'\0'处 */ ++p
·
2012-10-28 17:00
String
C库函数学习(一) <
string.h
>
strlen:返回字符串的长度(0值表示字符串结尾) size_tstrlen(char*str); 必须保证字符串以0结尾,否则函数会一直检查,直到遇见0为止,如果至字符串的结尾仍没有检查到0,则会越界检查,但它不会改变越界内存的值。strcpy:把from所指由'\0'结束的字符串复制到to所指的数组中 char*strcpy(char*to,constchar*from); 目的字符串的长度
keynumber
·
2012-10-27 01:00
C标准库函数::
string.h
::strcpy
/*
string.h
-> strcpy */ char* /* 返回目标字符数组地址 */ my_strcpy( char* dst, /* 目标字符数组 */
·
2012-10-26 15:00
String
hdu3308
2012-10-26*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" structSegTree { intl,r,mid; intl_max
Ice_Crazy
·
2012-10-26 11:00
strlen与sizeof区别
#include"stdio.h"#include"
string.h
"voidmain(){charaa[10];printf("%d",strlen(aa));printf("%d",sizeof(aa
liuxd3000
·
2012-10-25 10:00
C++标准库中的数学函数
cstdlib.h、cstring.h、cfloat.h 所以只要加头文件#include、#include、#include、#includeC中数学函数,所在函数库为math.h、stdlib.h、
string.h
tyf122
·
2012-10-24 16:00
hdu1269
2012-10-24*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #include"queue" usingnamespacestd
Ice_Crazy
·
2012-10-24 12:00
str比较函数: strspn, strcasestr, strstr等
strspn(返回字符串中第一个不在指定字符串中出现的字符下标)头文件#include函数定义size_tstrspn(constchar*s,constchar*accept)包含文件:
string.h
hzraymond
·
2012-10-24 09:00
hdu4430
网上有各种神牛的解释,菜鸟就不废话了,囧~~~ 2012-10-23*/#include"stdio.h" #include"
string.h
" #include"stdlib.h
Ice_Crazy
·
2012-10-23 19:00
hdu4422
2012-10-22*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" intmain() { intn,num[11]; inti,l,
Ice_Crazy
·
2012-10-22 19:00
ini
hdu 1995 汉诺塔V
点击打开链接dp[i][j]表示共有i个圆盘的汉诺塔,第j个最少移动的次数dp[i][j]=dp[i-1][j]*2;#include"stdio.h" #include"
string.h
" #include"math.h
yyf573462811
·
2012-10-22 13:00
hdu2216
还好1A了,囧~~~ 2012-10-21*/#include"stdio.h" #include"
string.h
" #include"stdlib.h
Ice_Crazy
·
2012-10-21 13:00
hdu4217
2012-10-20*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" structSeg { intl
Ice_Crazy
·
2012-10-20 19:00
hdu3743
2012-10-19*/#include"stdio.h" #include"
string.h
" #include"stdl
Ice_Crazy
·
2012-10-19 14:00
hdu2600
一次遍历KO掉,囧~ 2012-10-18*/#include"stdio.h" #include"
string.h
" #in
Ice_Crazy
·
2012-10-18 20:00
HDU 1251
//字典树的代码,基础字典树#include"stdio.h" #include"
string.h
" #include"stdlib.h" structdictree { structdictree*
Scythe666
·
2012-10-18 08:00
长嘘一口气。。。
#include"stdio.h" #include"
string.h
" constintLen=102; typedefstruct { charname[Len]; charvalue[Len]
Scythe666
·
2012-10-16 09:00
strcasecmp函数用法
strcasecmp1.功能:忽略大小写比较字符串2.头文件《
string.h
》3. 函数说明 strcasecmp()用来比较参数s1和s2字符串,比较时会自动忽略大小写的差异4.
HMSIWTV
·
2012-10-15 20:00
hdu3940
2012-10-15*/#include"stdio.h" #include"
string.h
" #include"math.h" #defineg9.8 intmain() { doubleh,v_x
Ice_Crazy
·
2012-10-15 14:00
hdu 1715 大菲波数 (大数)
#include"stdio.h" #include"
string.h
" inta[1001][1001]; intmain() { inti,j,k; intn,t; intcarry; scanf(
yyf573462811
·
2012-10-15 13:00
hdu 1405 The Last Practice (数学)
#include"stdio.h" #include"math.h" #include"
string.h
" intprime[65537]; voidfun() { inti,j,flag; memset
yyf573462811
·
2012-10-15 13:00
hdu 1723 Distribute Message (DP)
#include"stdio.h" #include"
string.h
" intmain() { intn,m,i,j,dp[66]; while(scanf("%d%d",&n,&m)!
yyf573462811
·
2012-10-15 13:00
hdu1599
最后再一次,囧~~~ 2012-10-15*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #include"queue
Ice_Crazy
·
2012-10-15 11:00
hdu 1017 A Mathematical Curiosity (水。。)
3)两个相邻的block之间输出空行,最后一块后面不用#include"stdio.h" #include"
string.h
" intmain() { intN; while(scanf("%d",&N
yyf573462811
·
2012-10-14 17:00
hdu1266 Reverse Number (模拟)
点击打开链接ps:按题目意思进行处理 #include"stdio.h" #include"
string.h
" intmain() { charstr1[111],str2[111]; intt,n,m
yyf573462811
·
2012-10-14 17:00
hdu 2126(dp)
点击打开链接题意:给你n件物品,m元钱,以及n件物品的价格,求最多物品数的方案数;刚开始,yf说可以先排序贪心求出最多的件数,然后按照完全背包的思路求解,#include"stdio.h" #include"
string.h
yyf573462811
·
2012-10-14 17:00
背包
HDU
种类数
hdu4396
2012-10-14*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #include"queue" usingnamespacestd
Ice_Crazy
·
2012-10-14 13:00
hdu4027
2012-10-13*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #include"math.h" structseg
Ice_Crazy
·
2012-10-13 18:00
hdu4022
2012-10-13*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" structA { intx,y,index; }x[100011
Ice_Crazy
·
2012-10-13 17:00
hdu3714
2012-10-08*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" #include"math.h" #definee1e-9 intn
Ice_Crazy
·
2012-10-08 17:00
hdu2603
2012-10-03*/#include"stdio.h" #include"
string.h
" #inc
Ice_Crazy
·
2012-10-03 10:00
hdu3280
2012-10-03*/#include"stdio.h" #include"
string.h
" #include"stdlib.h" structseg { __int64l,r,mid; __int64sum
Ice_Crazy
·
2012-10-03 09:00
poj2632模拟法
结构体中数据的内存对齐问题,在定义结构体是最好是遵守字节对齐原则, 简单说就是长字节的先定义,这样可以节省一些空间 */ #include<stdio.h>#include<
string.h
mayi_hetu
·
2012-09-27 12:00
c poj
链表增删改查系统 全手打- -!终于搞完了
//建立链表管理系统实现增删改查 #include"stdio.h" #include"
string.h
" #include"malloc.h" typedefstructnode { intdata;
liudao7994
·
2012-09-26 21:00
c
struct
null
hdu2189
2012-09-25*/#include"stdio.h" #include"
string.h
" intprime[100],k; intnum[151]; intmain() { intT; intn
Ice_Crazy
·
2012-09-25 13:00
hdu3419
2012-09-24*/#include"stdio.h" #include"
string.h
" inta,b,c; intans; inthash[10]; intbase[11],limit; intt_a
Ice_Crazy
·
2012-09-24 17:00
编程训练大数相乘
#include"stdio.h"#include"
string.h
"#defineMAX1024voidgetDigits(int*a,char*str){intlen=strlen(str);inti
hiphopmattshi
·
2012-09-21 23:10
算法学习
kernel对应的c库实现
对于普通应用程序,可以通过包含头文件stdlib.h和stdio.h,
string.h
等,然后调用需要的itoa(),atoi()等函数,但是对于Linux内核来说,无法使用那些C库中的函数。
zhangchiytu
·
2012-09-21 20:00
上一页
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
其他