#include<iostream.h>
#include<stdio.h>
#include<stdlib.h>
struct BiTnode
{char data;
BiTnode *lchild,*rchild;
};
struct Queue
{BiTnode* *data0;
int max;
int front,rear,size;
};
void SetQueue(Queue *Q,int n)
{Q->data0=(BiTnode**)malloc(n*sizeof(BiTnode*));
if(Q->data0==NULL)
{cout<<"overfilow.";exit(1);
}
Q->max=n;Q->front=0;
Q->rear=0;Q->size=0;
}
void FreeQueue(Queue *Q)
{free(Q->data0);}
void QInsert(Queue *Q,BiTnode* item)
{if(Q->size==Q->max){cout<<"Queue is full."<<endl;exit(1);}
Q->data0[Q->rear]=item;
Q->rear=(Q->rear+1)%Q->max;
Q->size++;
}
BiTnode* QDelete(Queue *Q)
{BiTnode* item;
if(Q->size==0)
{cout<<"Deleting from an empty queue!"<<endl;exit(1);}
item=Q->data0 [Q->front];
Q->front=(Q->front+1)%Q->max;
Q->size--;
return item;
}
int QEmpty(Queue *Q)
{if(Q->size==0)return(1);return(0);
}
void CreateBitree(BiTnode *&T)
{char ch;
cin>>ch;
if(ch=='/')T=NULL;
else
{
if(!(T=(BiTnode*)malloc(sizeof(BiTnode))))
{cout<<"Allocation failed."<<endl;exit(1);}
T->data=ch;
CreateBitree(T->lchild);
CreateBitree(T->rchild);
}
}
void PreOrder(BiTnode*T)
{
if(T!=NULL)
{cout<<T->data<<"->";
PreOrder(T->lchild);
PreOrder(T->rchild);
}
}
void InOrder(BiTnode*T)
{
if(T!=NULL)
{
InOrder(T->lchild);
cout<<T->data<<"->";
InOrder(T->rchild);
}
}
void PostOrder(BiTnode*T)
{
if(T!=NULL)
{
PostOrder(T->lchild);
PostOrder(T->rchild);
cout<<T->data<<"->";
}
}
void LevelOrder(BiTnode *T)
{BiTnode *ptr;
Queue Q;
if(T==NULL)return;
SetQueue(&Q,50);
QInsert(&Q,T);
while(!QEmpty(&Q))
{ptr=QDelete(&Q);
cout<<ptr->data<<"->";
if(ptr->lchild!=NULL)
QInsert(&Q,ptr->lchild);
if(ptr->rchild!=NULL)
QInsert(&Q,ptr->rchild );
}
FreeQueue(&Q);
}
void BiTreeTraverse()
{
BiTnode * T;
char j;
int flag=1;
cout<<"***************本程序实现二叉树遍历的操作***************"<<endl;
cout<<endl;
cout<<"按先序遍历来构造二叉树:"<<endl;
printf("例如:a/b/c/d//(回车)\n"); CreateBitree(T); //初始化队列
while(flag)
{
cout<<endl;
cout <<" 请选择: "<<endl
<<" ┌──────────┐"<<endl
<<" │ 1.递归先序遍历 │"<<endl
<<" │ 2.递归中序遍历 │"<<endl
<<" │ 3.递归后序遍历 │"<<endl
<<" │ 4.非递归层序遍历 │"<<endl
<<" │ 0.退出程序 │"<<endl
<<" └──────────┘"<<endl;
cin>>j;
switch(j)
{
case '1':if(T)
{
cout<<"递归先序遍历二叉树:"<<endl;
PreOrder(T);
cout<<endl;
}
else cout<<"二叉树为空!"<<endl;
break;
case '2':if(T)
{
cout<<"递归中序遍历二叉树:"<<endl;
InOrder(T);
cout<<endl;
}
else cout<<"二叉树为空!"<<endl;
break;
case '3':if(T)
{
cout<<"递归后序遍历二叉树:"<<endl;
PostOrder(T);
cout<<endl;
}
else cout<<"二叉树为空!"<<endl;
break;
case '4':if(T)
{
cout<<"非递归层序遍历二叉树:"<<endl;
LevelOrder(T);
cout<<endl;
}
else cout<<"二叉树为空!"<<endl;
break;
default:flag=0;cout<<"程序运行结束,按任意键退出!"<<endl;
}
}
}
头文件二
//猴子选大王
#include<stdio.h>
#include<stdlib.h>
void Josephus(int n,int m)
{int i,j,*p;
p=(int *)malloc(n*sizeof(int));
for(i=0;i<n;i++)
p=i+1;
i=0;
while(n>1)
{i=(i+m-1)%n;
printf("del %d\n",p);
for(j=i+1;j<n;j++)
p[j-1]=p[j];
n--;
if(i==n)i=0;
}
printf("King! %d\n",p[0]);
}
void Monkeyking()
{int n,count;
printf("请问您,这个猴子群有多少只: ");
scanf("%d",&n);
printf("\n猴子们随机抽取的数为: ");
scanf("%d",&count);
printf("\n猴子选大王开始了:\n");
Josephus(n,count);
}
头文件三
//文章编辑****
#include<iostream.h>
#include<stdlib.h>
#include<fstream.h>
struct Row
{char * rbase;
int length;
};
struct Page
{Row * pbase;
int n;
};
//创建一页文章。
void CString(Row &R,int length)
{R.rbase=(char*)malloc(length*sizeof(char));R.length=length;
cout<<"请输入字符串: ";
for(int i=0;i<length;i++)
{char c;cin>>c;R.rbase=c;}
}
void CPage(Page &ye,int length,int n)
{ye.pbase=(Row *)malloc(n*sizeof(Row));ye.n=n;//还需附加分配不成功等条件
for(int j=0;j<n;j++)
{ ye.pbase[j].rbase=(char *)malloc(length*sizeof(char));//还需附加分配不成功等条件
if(!ye.pbase[j].rbase)cout<<"Allocation failed."<<endl;ye.pbase[j].length=length;}
cout<<"hua le."<<endl;//进行测试
for( j=0;j<n;j++)
for(int i=0;i<length;i++)
{char note; cin>>note;
ye.pbase[j].rbase=note;
if(note=='$') for(;i<length;i++)ye.pbase[j].rbase=' ';//这个地方还不行
if(note=='#') for(j++;j<n;j++)ye.pbase[j].rbase=' ';
}cout<<"hua le."<<endl;//测试
for(int p=0;p<ye.n;p++)
{cout<<"row"<<(p+1)<<" ";
for(int q=0;q<ye.pbase->length;q++)//为什么有的出现,有的不出现。
cout<<ye.pbase[p].rbase[q];
cout<<endl;}
}
void OPage(Page ye)
{
for(int j=0;j<ye.n;j++)
{cout<<"row:"<<(j+1)<<" ";
for(int i=0;i<ye.pbase->length;i++)//为什么有的出现,有的不出现。
cout<<ye.pbase[j].rbase;
cout<<endl;
}
}
void Stastics(Page ye)
{ int zm=0,sz=0,kg=0,az=0,i=0; char c;
for(int j=0;j<ye.n;j++)
{for(i=0;i<ye.pbase->length;i++)//为什么有的出现,有的不出现。
{c=ye.pbase[j].rbase;
if(c==' ') kg++;
else if((int)c>64&&(int)c<91||((int)c>96&&(int)c<123)) zm++;
else if((int)c>47&&(int)c<58) sz++;
}
}
az=i*j-kg;//为什么i 是未定义的,而j不是
cout<<"全部字母个数为: "<<zm<<endl
<<"全部数字个数为: "<<sz<<endl
<<"空格数 为: "<<kg<<endl
<<"总字数 为 "<<az<<endl;
}
void StasString(Page p,Row s)
{ int m=0;int k=0;char c;
for(int j=0;j<p.n;j++)
for(int i=0;i<p.pbase->length;i++)
{c=p.pbase[j].rbase;
if(c!=s.rbase[k])k=0;
else k++;
if(k==s.length){m++;}//考虑重叠情况for(k--;k!=0;k--,j--);
}
cout<<"所给串在文章中出现的次数为: "<<m<<endl;
}
void DelString(Page &p,int m,Row s)
{if(s.length<1||s.length>p.pbase->length||m<1||m>p.n)cout<<"你的输入有误,请仔细看提示."<<endl;//你的输入有误,请仔细看提示
else
{ int k=0, temp;char c;cout<<"jin xing ce shi."<<endl;
for(int j=0;j<p.pbase[0].length;j++)//for(int j=0;j<p.pbase->length;j++)
{ c=p.pbase[m-1].rbase[j];//m-1才是正确的行
if(c!=s.rbase[k])k=0;
else k++;cout<<"k值:"<<s.rbase[k-1]<<endl;
if(k==s.length)
{cout<<"确实存在此字符串."<<endl;
temp=j+1-k;break;//int temp=j-k;break;同样错误1
}
}
cout<<"I'm here;"<<endl;
Row a;a.rbase=(char*)malloc((p.n-m+1)*(p.pbase->length-temp)*sizeof(char)); a.length=(p.n-m+1)*(p.pbase->length-temp);//weizhi是a的长度,同样错误1
k=0;
cout<<"I'm here;"<<endl;
for(int i=m-1;i<p.n;i++)//从删除位置开始赋值到数组a
{
for(j=temp;j<p.pbase->length;j++,k++)
a.rbase[k]=p.pbase.rbase[j];
j=0;
}cout<<"I'm here;"<<endl;
for(k=0;k<a.length-s.length;k++)a.rbase[k]=a.rbase[k+s.length];//
for(;k<a.length;k++)a.rbase[k]=' ';
for(i=m-1,k=0;i<p.n;i++)
{for(j=temp;j<p.pbase->length;j++,k++)
p.pbase.rbase[j]=a.rbase[k];j=0;}cout<<"I'm here;"<<endl;
OPage(p);//可以调用函数0page(p);
}
}
void Save(Page P)//new
{fstream outfile;
outfile.open("information.dat",ios::out|ios::binary);
if(!outfile)
{cout<<"information.dat can't open.\n";
abort();
}
for(int i=0;i<P.n;i++)
outfile.write(P.pbase.rbase,sizeof(P.pbase.rbase));
outfile.close();
}
void Read(Page &P)
{ fstream infile,outfile;
infile.open("information.dat",ios::in|ios::binary);
if(!infile)
{cout<<"information.dat can't open.\n";
abort();
}
for(int i=0;i<P.n;i++)
infile.read(P.pbase.rbase,sizeof(P.pbase.rbase));
infile.close();
OPage(P);
}
void Choose(Page &Ye,int h,int n)
{ int c;cout<<"请选择: ";cin>>c;c