- 论坛徽章:
- 0
|
UBUNTU 12.10
环境都是好的,用的GEANY,编译器G++和GCC都有。
刚装好环境,拿了一个在WINDOWS下用DEV CPP编写的程序,在WINDOWS环境下是能够完美运行的。- #include<iostream>
- #include<stdlib.h>
- #include<fstream>
- int times,k,found; //k为区块长度,times为区块重复次数 ,found为压缩结束标志
- int find(char *p);
- void findnext(char *p,int len);
- void compress(char *p);
- int main()
- {
- char *tmp,*tmp1;
- char a[200],tem[100];
- char *p;
- int num;
- int f=0;
- fstream file,fileout;
- file.open("problem1.in");
- fileout.open("problem1.out");
- file>>num;
- while(num)
- {
- file>>a;
- cout<<a<<endl;
- p=a;
- while(!found)
- {
- for(;*p!='\0';p++) //直到结尾
- {
- k=find(p);
- if(k&&((k+3)<=k*times)) //不值得压缩时不压缩,否则长度反而增加
- {
- f=1;
- int i;
- for(i=0;i<k;i++) //找到可压缩点后进行压缩
- *(tem+i)=*(p+i);
- *(p)=times+'0';
- *(p+1)='{';
- for(i=0;i<k;i++)
- *(p+i+2)=*(tem+i);
- // cout<<p+i+2<<endl;
- *(p+2+k)='}';
- tmp=p+k+3;
- tmp1=p+k*times; //压缩点后的往前排列
- for(;*tmp1!='\0';tmp1++)
- *(tmp++)=*tmp1;
- *tmp='\0';
- p=p+k+2; //压缩一个区块后跳过这一区块
- }
- }
- if(!f)
- found=1; //上次压缩有结果,则重复压缩
- p=a; //p重新定位到字符串开头,重复压缩
- f=0;
- // cout<<a<<endl;
- // system("pause");
- }
- fileout<<strlen(a)<<endl;
- // cout<<num<<endl;
- num-=1;
- found=0; //压缩完一个字符串后重置标志位
- // system("pause");
- }
- fileout.close();
- // system("pause");
- return 0;
- }
- void findnext(char *p,int len) //寻找后续压缩
- {
- static int t=2;
- char *q;
- int j=1;
- q=p+len;
- for(int i=0;i<len;i++)
- {
- if(*(q+i)!=*(p+i))
- {
- j=0;
- break;
- }
- }
- if(j)
- {
- t++;
- times=t;
- // cout<<"子函数"<<t <<*(q+len)<<"次数"<<times<<endl;
- if(*(q+len)==*q) //递归
- findnext(q,len);
- t=2; //递归结束后为下一个压缩重置次数
- }
- }
- int find(char *p) //寻找有无压缩点
- {
- char *q;
- q=p+1;
- int n;
- int j=0;
- for(;*q!='\0';q++)
- {
- if(*(q)==*(p)) //找到第一个相同的
- {
- for(n=0;p+n<q;n++) //判断中间是否相同
- {
- if(*(p+n)!=*(q+n))
- {
- j=1;
- break;
- }
- }
- if(j) //失败,开始下一个相同字符
- j=0;
- else //成功,跳出
- break;
- }
- }
- if(*q!='\0') //获取压缩点
- {
- times=2;
- if(*(q+n)==*q) //有后续压缩则继续压缩
- findnext(q,n);
- return n; //返回长度
- }
- else
- return 0; //默认长度
- }
复制代码 在LINUX下面,用G++命令编译不通过,说没有iostream.h fstream.h这俩,我搜了一下,把.h去掉了,倒不提示这个错误了,但又提示了其他几个错误。。。实在不知道错误在哪,求指正。以及顺便求推荐本书,C++ PRIMER有讲LINUX部分么?我还没看过,怎么样? |
|