1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node
*head){ if(head->next==NULL||head->next->next==NULL) return
head->next; node...
分类:
其他好文 时间:
2014-07-22 23:11:15
阅读次数:
374
流程控制顺序执行流程条件分支流程if(布尔表达式) {}if(布尔表达式) {} else{}
if(表达式1){}else if(表达式2){}else if...else{}switch(int型表达式或变量) // byte short int
char string(1.7之后){ ...
分类:
编程语言 时间:
2014-07-22 23:10:35
阅读次数:
353
@echo offecho IP Ping 工具:x::set /p
choice="请输入扫描类型:A or B :"set choice=Aif /i %choice%==a goto ipduan else goto
y:yif /i %choice%==b go...
给定 ab 与飞 f1 f2 求f(n) = (A * f(n - 1) + B * f(n
- 2)) mod 7.分析:1 因为mod7 0using namespace std;int main(){ int a,b,n; int f[1005];
while(cin>>a>...
分类:
其他好文 时间:
2014-07-22 23:06:34
阅读次数:
391
这题就是 要你找出一个ASCII 的值x使得 :
x^e%n==num(当前输入的数,e条件已给出)zsd:1: ASCII0-255可以枚举2: =a^11 11=1011int pow2( int a,
int b ){ int r = 1, base = a; while( b...
分类:
其他好文 时间:
2014-05-01 16:22:43
阅读次数:
326
递归函数是在一个函数通过名字调用自身的情况下构成的。如下: function
self(num){ if(num<=1){ return 1; } else{ return num*self(num-1);
}}这是一个经典的求阶乘的函数。当在外面调用self(4)是可以得到24 ,...
分类:
编程语言 时间:
2014-04-30 14:41:43
阅读次数:
499
#includeusing namespace std;int main(){ char
a,b,c; while(scanf("%c%c%c",&a,&b,&c)!=EOF) { getchar();
cout<<a<<b<<c<<endl; } retur...
分类:
其他好文 时间:
2014-04-30 14:00:36
阅读次数:
346
//冒泡排序publicclassbubblesorter{publicvoidsort(int[]list){inti,j,temp;booldone=false;j=1;while((jlist[i+1]){done=false;temp=list[i];list[i]=list[i+1];li...
分类:
其他好文 时间:
2014-04-29 17:21:45
阅读次数:
429
#include#include#include#include #includeusing
namespace std;char c[1000005];int main(int argc, char* argv[]){ int
n; scanf("%d", &n); while(n--) { .....
分类:
其他好文 时间:
2014-04-29 16:31:46
阅读次数:
286
js 验证手机号码 //验证手机号 function isMobel(value) { if
(/^1[3-8]+\d{9}$/g.test(value)) { return true; } else { return false; } }
分类:
移动开发 时间:
2014-04-29 11:12:46
阅读次数:
369