资源简介
Q1077615.zip C++读文件创建链表问题 https://ask.csdn.net/questions/1077615
代码片段和文件信息
// Q1077615.cpp : Defines the entry point for the console application.
//
#include “stdafx.h“
#include
#include
#include
#include
using namespace std;
struct student
{
unsigned long id;
string name;
float score;
student *next; //下一个结点的指针
};
int main()
{
student head = {-1““0};
head.next = NULL;
student * p = &head;
FILE * fp = fopen(“Score.txt“ “r+“);
while (true)
{
unsigned long id;
char name[100];
float score;
if (fscanf(fp “%ld%[^]%f“ &id name &score) == EOF) break;
p->next = new student;
p = p->next;
p->next = NULL;
p->id = id;
p->name = name;
p->score = score;
}
int n;
while (1)
{
cin >> n;
if (n == 0) break;
p = head.next;
while (p)
{
if (p->id == n)
{
cout << p->name << “ “ << p->score << endl;
break;
}
p = p->next;
}
if (!p || p->id != n)
cout << “no record!“ << endl;
}
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-05-24 13:36 Q1077615\Debug\
文件 51712 2020-05-24 13:32 Q1077615\Debug\Q1077615.exe
文件 891 2020-05-24 13:15 Q1077615\Q1077615.sln
文件 12288 2020-05-24 13:34 Q1077615\Q1077615.suo
目录 0 2020-05-24 13:26 Q1077615\Q1077615\
目录 0 2020-05-24 13:36 Q1077615\Q1077615\Debug\
文件 996 2020-05-24 13:32 Q1077615\Q1077615\Q1077615.cpp
文件 4402 2020-05-24 13:26 Q1077615\Q1077615\Q1077615.vcxproj
文件 1366 2020-05-24 13:26 Q1077615\Q1077615\Q1077615.vcxproj.filters
文件 143 2020-05-24 13:15 Q1077615\Q1077615\Q1077615.vcxproj.user
文件 1722 2020-05-24 13:15 Q1077615\Q1077615\ReadMe.txt
文件 143 2020-05-24 13:19 Q1077615\Q1077615\Score.txt
文件 295 2020-05-24 13:15 Q1077615\Q1077615\stdafx.cpp
文件 320 2020-05-24 13:15 Q1077615\Q1077615\stdafx.h
文件 314 2020-05-24 13:15 Q1077615\Q1077615\targetver.h
相关资源
- 实现集合交并差
- SHA-3keccak之C/C++官方源码
- vc++读取shp文件源码
- c++实现车辆管理系统
- c++实现的mips汇编器
- 经典4阶 Runge-Kutta方法解常微分方程的
- Ubuntu下最简单的Cmake编译多个C和C++工
- C++编写一个时间类Time实验报告
- c++编写文本文件字符串替换程序
- C++ Builder + Access 学生管理系统数据库
- 利用HDF4库读取*.hdf文件
- DES算法加密解密C++源码及程序完整的
- VC++MFC编程
- VC++穿透sock5代理访问防火墙以外的程
- C++Primer第五版---高清版.zip
- 文件系统 操作系统实验 C++
- C++调用其它exe执行文件.
- 用C、C++完整防火墙源代码
- C++实现http客户端连接服务端及客户端
- 矩阵所有运算的C++代码
- 北京浮生记控制台版C++源代码
- 一个步态识别 软件
- vc++&opencv图像分块
- C++实验继承与派生
- C++ 桌面宠物-金鱼
- MATLAB模糊控制器*.fisC/C++接口文件
- 矩阵求逆C++源代码
- C++获取程序版本信息
- 迷宫求解含源代码
- 端口扫描VC++高级编程源代码
评论
共有 条评论