P
pharrell
Программа должна считыватьстроки из файла, отсортировать их и записать в этот же файл.Но почему то программа последнюю строчку копирует и получается,что в тексте две одинаковые строчки.Подскажи те пожалуйста если где есть ошибка.Заранее спасибо
Код:
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<windows.h>
#include<string.h>
#include<iostream.h>
#define maxline 1000
void sort(char* ptr[],int n_lines)
{
int i,j;
char *tmp;
for(i=0;i<n_lines-1;i++)
for(j=0;j<n_lines-1;j++)
if(strcmp(ptr[j],ptr[j+1])>0)
{
tmp=ptr[j];
ptr[j]=ptr[j+1];
ptr[j+1]=tmp;
}
}
void write_lines(char* ptr[],int n_lines)
{
int i;
char str[100];
for(i=0;i<n_lines;i++)
{
CharToOem(ptr[i],str);
cout<<str<<endl;
}
}
void main(void)
{
FILE *in;
char str[100];
int i;
int counter=0;
char buf[maxline];
char *ptr[maxline];
if((in=fopen("C:\\in.txt","rt"))==NULL)
{
cout<<"Error open file";
return;
}
for(counter=0;(!feof(in))&&counter<maxline;counter++)
{
fgets(buf,maxline,in);
if(buf[strlen(buf)-1]=='\n')
{
buf[strlen(buf)-1]='\0';
}
ptr[counter] = new char[strlen(buf)+1];
strcpy(ptr[counter],buf);
}
fclose(in);
cout<<"strok--->>"<<i<<endl;
cout<<"No sort:"<<endl;
write_lines(ptr,counter);
cout<<endl<<endl<<"Sort:"<<endl;
sort(ptr,counter);
write_lines(ptr,counter);
}