C file pointer read write issues
I was trying to make a simple bubblesort program.
Read in numbers from a text file and compare them with the next line, sort in ascending order.
Now, I've found my program is able to read from the file just fine, it's when I use any write commands (fprintf, or fputs) that everything goes wrong.
I've tried using ftell and fseek and I had the same issue.
Assuming the text file contains:
1804289383 846930886 168169277开发者_运维技巧7 1714636915 1957747793 424238335 719885386 1649760492 596516649
It gets stuck in an infinite loop with
846930886 846930886 8804289383 8804289383 ...
as the output to the file and 8804289383 repeating over and over
int main(void) {
int swapped;
int run_once;
// pointers
FILE *filep;
// file positions
fpos_t currpos;
fpos_t prevpos;
fpos_t nextpos;
/**
* next pos helps represent where the file pointer was
* before the switch was initiated
*/
// swap variables
unsigned long long int prev;
unsigned long long int curr;
// string inputs
char buffer[20];
// open file stream
filep = fopen("dataFile.txt","r+"); // looks for the file to open for r/w
if (filep == NULL) { // check for file
fprintf(stderr, "dataFile.txt does not exist!!\n");
return 1;
}
// bubble sort
do {
rewind(filep); // starts the pointers at the start of the file
fgetpos(filep,&currpos);
prevpos = currpos;
nextpos = currpos;
swapped = 0; // swapped = false
curr = 0;
prev = 0;
fgets(buffer, 20, filep); // need to read before loop or else it doesn't end properly
while (!feof(filep)) { // while it's not the end of the file
fgetpos(filep,&nextpos);
sscanf(buffer,"%lld",&curr); // convert to unsigned long long
printf("Prev: %lld\n",prev); // troubleshooting stuff
printf("Curr: %lld\n",curr);
if (prev > curr) {
fsetpos(filep,&prevpos); // move filep to previous
fprintf(filep,"%lld\n",curr); // print current to previous spot
fsetpos(filep,&currpos); // move filep to current
fprintf(filep,"%lld\n",prev); // print previous to current spot
printf("Swapped!\n"); // more troubleshooting
swapped = 1; // swapped = true
fsetpos(filep,&nextpos); // reset filep by moving it to nextpos
}
if (prev < curr) {
prev = curr; // no need to swap since prev will continue to be the previous value
}
// increment the postions
prevpos = currpos;
currpos = nextpos;
fgets(buffer, 20, filep);
}
} while (swapped == 1);
// close file stream
fclose(filep);
return 0;
}
Thanks you very much for your help, because I've spent over 10 hours trying to figure out how to fix this with no luck.
Your code to swap two adjacent characters is flawed. Note that if you have two numbers 1 and 234, they appear inside the file initially as 1\n234\n
, but if swapped, the 1 does not start at index 2 in the file (where the 234 initially started), but instead at index 4.
As a result, if you swap two numbers prev and curr, with prev being the earlier of the two numbers in the file initially, place curr at prev's position, and prev after the newline after you finished writing curr. Note that this is a local change (since the len(prev) + len(curr) == len(curr) + len(prev).
Hmm, I might reconsider the approach.
- Is it really your intention to do an external sort? If not, it would be a lot cleaner to just read the file in, sort it in memory, and then write it out.
- Regardless of the previous answer, is it really necessary to sort in place? Even for an external sort, would it be within your problem parameters to write out a new file instead of trying to bash a single file into sorted order?
- I guess bubble sort is the one kind of sort that will actually work while editing a text file with variable-length-lines in place, because whenever you want to write a long number on to a short line you also have a short number and a long line right next to it. (Shudder)
If you really do want to do an external sort in place, then my suggestion is that you refactor the operations into small functions so you can decompose the necessary logic without getting confused.
Update: Forget the above advice, I've decided I like this problem just the way it is. Unfortunately I've already read Yuliy's answer.
You're not going to be able do that in the general case since your numbers have differing numbers of characters. You should just read in all the numbers, sort in memory, and then overwrite the existing file with a new file containing the sorted numbers.
Add some stuff to your troubleshooting and you should see your probably come up pretty quickly: printf("CurPost: %d\n",currpos); printf("PrevPos: %d\n",prevpos); printf("NextPos: %d\n",nextpos);
(hint: your numbers are different lengths so your currpos and nextpos numbers end up one place out, because some numbers are different lengths than other numbers).
Your program will only work if every number on each line of the file is the same size. Even then you have some other problems, like the last number in the file will never move.
精彩评论