码迷,mamicode.com
首页 >  
搜索关键字:char    ( 35907个结果
uva129 - Krypton Factor 7.4.3 困难的串
7.4.3困难的串 学习点:dfs加入返回值,递归搜索过程中如果有一个成功,就直接退出 //7.4.3 困难的串#include#include#include#include#includeusing namespace std;int n,L;int cnt;char v[81];bool ju...
分类:其他好文   时间:2014-06-28 22:56:05    阅读次数:284
C++中使用函数指针 【瓦特芯笔记】
在C++类中使用函数指针。 类型定义: typedef 返回类型(类名::*新类型)(参数表) //类定义 class CA { public: char lcFun(int a) { return; } }; CA ca; typedef char (CA::*PTRFUN)(int); PTRF...
分类:编程语言   时间:2014-06-28 21:52:53    阅读次数:361
第一章习题
1.2#include #include #include #include #include using namespace std;char arr[20][20];char words[30][4]={ "boy","own","sad","job","dry", "can","may","b...
分类:其他好文   时间:2014-06-18 11:08:35    阅读次数:211
typedef的用法总结
用途一:定义一种类型的别名,而不只是简单的宏替换。可以用作同时声明指针型的多个对象。比如:char* pa, pb;//这多数不符合我们的意图,它只声明了一个指向字符变量的指针,//和一个字符变量;以下则可行:typedef char* PCHAR;PCHAR pa, pb;这种用法很有用,特别是c...
分类:其他好文   时间:2014-06-18 10:37:47    阅读次数:211
001:判断闰年
输入一个年份,判断是否为闰年。判断闰年的方法是:如果该年能被4整除但不能被100整除;或者能被400整除,就是闰年。 1 #include 2 3 int main( int argc, char* argv[] ) 4 { 5 6 unsigned long year; 7 ...
分类:其他好文   时间:2014-06-18 09:42:30    阅读次数:152
(Power Strings)sdutoj2475
#include #include #include char a[1000001];int next[1000001];int l;void Getnext(){ int j=-1; int i=0; next[0]=-1;//忘写了,死循环 while(i...
分类:其他好文   时间:2014-06-18 09:35:19    阅读次数:138
KMP(http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2772)
#include #include #include char a[1000001],b[1000001];int next[1000001];int l,l2;void Getnext(){ int i=0; int j=-1; next[0]=-1; while(i=l2...
分类:Web程序   时间:2014-06-18 09:29:37    阅读次数:221
移位操作及其在数据类型转换中的作用
一.对移位操作的基本概述: 1、什么样的数据类型可以直接移位 char、short、int、long、unsigned char、unsigned short、unsigned int、unsigned long都可以进行移位操作,而double、float、bool、long double则不可以进行移位操作。   2、有符号数据类型的移位操作 对于char、short、int、lon...
分类:其他好文   时间:2014-06-18 06:59:15    阅读次数:260
gdb 远程qemu-arm调试
把 c 编译成 arm 指令的可执行文件  /usr/bin/arm-linux-gnueabi-g++ hello.cpp  cat hello.cpp #include void crash(){ char *a=0; *a=0; } int main() { printf("hello world\n"); crash();...
分类:数据库   时间:2014-06-18 06:50:45    阅读次数:424
strlen() 和 sizeof() 在字符串中的使用
#include int _tmain(int argc, _TCHAR* argv[]){ char *pMyChar = "I like coding !"; char myChar[] = "I like coding !"; int num1(0),num2(0); num1...
分类:其他好文   时间:2014-06-17 23:30:56    阅读次数:245
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!