echo000 发表于 2018-2-22 20:52:53

如何把每次写的字符写到文件的最前面啊

#include<stdio.h>
int main()
{
        FILE *fp;
        int a;
        char b;
        fp=fopen("shiyan.txt","a+");
        for(a=0;a<5;a++){
                fseek(fp,0L,SEEK_SET);
                scanf("%s",b);
                fprintf(fp,"%s ",b);
        }
        fclose(fp);
}

这是我的代码
原意是想把每次b的值输入到文件最前的
就是输入a b c d e
到文件里是 e d c b a
但是失败了

我是为了将一个不知道多长的链表倒序写到文件里的,如果有其他的办法 ,也请告诉我把。谢谢谢谢谢谢!!

lyjlyj 发表于 2018-2-23 09:44:49

创建一个和原来顺序相反的链表(采用头插法),然后按顺序写入就行了
头插法的简单理解:head就是指向头部的指针,node是新的节点
node.next = head
head = node

人造人 发表于 2018-2-23 10:52:03

#include <stdio.h>
#include <string.h>

int main(void)
{
        char str;
        char buf;
        int buf_len = 0;
        int ch;
        FILE *file;
       
        file = fopen("data.txt", "r+");
        if(file)
        {
                while((ch = fgetc(file)) != EOF)
                        buf = ch;
                fclose(file);
        }


        printf("请输入: ");
        fgets(str, 100, stdin);
        int str_len = strlen(str) - 2;        // 不要 '\n'

        file = fopen("data.txt", "w");
        while(str_len >= 0)
                fputc(str, file);
        for(int i = 0; i < buf_len; ++i)
                fputc(buf, file);
        fclose(file);

        return 0;
}






页: [1]
查看完整版本: 如何把每次写的字符写到文件的最前面啊