【负载均衡式在线OJ】加载题目信息(文件版)

news/2025/1/24 18:30:37/

目录

如何读取文件 -- 常见流程

代码


如何读取文件 -- 常见流程

  • 在C++中使用 std::ifstream来打开文件流是一个常见的操作,用于创建一个输入文件流,并尝试打开名为 question_list的文件。
  • if (!in.is_open())检查文件是否成功打开。如果文件未能打开,通常是因为路径错误或权限问题。
  • while (getline(in, line)):使用 getline函数逐行读取文件直到结束。每次读取一行并存储在line字符串中。
  • in.close();显式地关闭文件流。尽管在in对象离开其作用域时会自动调用close方法,但在某些情况下显式关闭可能更好,特别是当你想要立即释放资源或者在同一作用域内重复使用同一个流对象时。
#include <iostream>
#include <fstream>
#include <string>int main() {// 文件名const char* filename = "question_list.txt";// 创建输入文件流对象std::ifstream in(filename);// 检查文件是否成功打开if (!in.is_open()) {std::cerr << "无法打开文件: " << filename << std::endl;return 1; // 返回非零值表示程序异常终止}// 读取文件内容到字符串变量std::string line;while (getline(in, line)) // 使用getline逐行读取{ //读取该行内容,可以对根据内容处理数据}// 关闭文件流(当离开作用域时会自动调用close)in.close();return 0;
}

代码

OnlineJudge/oj_server/oj_model_file.hpp · zihuixie/负载均衡式在线OJ - 码云 - 开源中国https://gitee.com/zihuixie/load-balancing-online-oj/blob/master/OnlineJudge/oj_server/oj_model_file.hpp

#pragma once
#include <unordered_map>
#include <string>
#include <vector>
#include <fstream>
#include <cassert>#include "../comm/log.hpp"
#include "../comm/util.hpp"// 文件版本,从文件中读取题目信息namespace ns_model
{using namespace ns_log;using namespace ns_util;// 1 判断回文数 1 1 1000struct Question{std::string number; // 题号std::string title;  // 题目std::string star;   // 难度int cpu_limit;      // 时间限制int mem_limit;      // 空间限制std::string desc;   // 题目描述std::string header; // 提前预设的代码(用户未提交)std::string tail;   // 测试用例};const std::string question_path = "./questions/";               // 题库所在文件夹const std::string question_list = "./questions/questions/list"; // 题库清单class Model{private:// 题号->题目信息 的映射关系std::unordered_map<std::string, Question> questions;public:Model(){assert(LoadAllQuestions(question_list));}~Model(){}// 从清单中加载题目信息到哈希表中bool LoadAllQuestions(const std::string &question_list){std::ifstream in(question_list); // 打开流if (!in.is_open()) // 打开失败{LOG(FATAL) << " 加载题目列表失败,请检查是否存在题库文件 " << "\n";return false;}// 打开成功,开始读文件std::string line;std::vector<std::string> token;while (getline(in, line)){// 切割读到的字符串,并把字段插入到哈希表中// 1. 切割 line,把切割后的字段放入数组 token 中StringUtil::SplitString(line, &token, " ");// 2.把字段放入哈希表中//  1 判断回文数 1 1 1000if (token.size() != 5){LOG(WARNING) << " 部分题目格式错误,加载失败,请检查文件格式 " << "\n";continue;}Question q;q.number = token[0];q.title = token[1];q.star = token[2];q.cpu_limit = std::stoi(token[3]);q.mem_limit = std::stoi(token[4]);// ./questions/1/std::string path = question_path;path += q.number;path += "/";FileUtil::ReadFile(path + "desc.txt", &(q.desc), true);FileUtil::ReadFile(path + "header.hpp", &(q.header), true);FileUtil::ReadFile(path + "tail.hpp", &(q.tail), true);questions.insert({q.number, q});}LOG(INFO)<<" 加载题库成功 "<<"\n";in.close();}// 获取整个题库bool GetAllQuestions(std::vector<Question> *out){if (questions.empty()){LOG(ERROR) << " 用户获取题库失败 " << "\n";return false;}for (const auto &q : questions){out->push_back(q.second);}return true;}// 获取指定题目bool GetOneQuestion(const std::string &number, Question *out){if (questions.find(number) == questions.end()){LOG(ERROR) << "题目获取失败,题目编号:" << number << "\n";return false;}*out = questions[number];return true;}};
}


http://www.ppmy.cn/news/1565847.html

相关文章

Windows安装Miniconda和PySide6以及配置PyCharm

目录 1. 选择Miniconda 2. 下载Miniconda 3. 安装Miniconda 4. 在base环境下创建pyside6环境 5. 安装pyside6环境 6. 配置PyCharm环境 7. 运行第一个程序效果 1. 选择Miniconda 选择Miniconda而没有选择Anaconda&#xff0c;是因为它是一个更小的Anaconda发行版&#x…

MySQL可直接使用的查询表的列信息

文章目录 背景实现方案模板SQL如何查询列如何转大写如何获取字符位置如何拼接字段 SQL适用场景 背景 最近产品找来&#xff0c;想让帮忙出下表的信息&#xff0c;字段驼峰展示&#xff0c;每张表信息show create table全部展示&#xff0c;再逐个粘贴&#xff0c;有点太耗费时…

算力需求大爆发,谁是“大推手”?

大约5亿年前&#xff0c;地球迎来了物种的突然大爆发&#xff0c;标志着生物进化除了缓慢渐变&#xff0c;还可能以跳跃的方式进行。 同样&#xff0c;人工智能在经历70余年曲折发展之后&#xff0c;也处于一个极为关键的时刻&#xff0c;在模型、数据、算力等各项基础技术多年…

【Leetcode 热题 100】279. 完全平方数

问题背景 给你一个整数 n n n&#xff0c;返回 和为 n n n 的完全平方数的最少数量 。 完全平方数 是一个整数&#xff0c;其值等于另一个整数的平方&#xff1b;换句话说&#xff0c;其值等于一个整数自乘的积。例如&#xff0c; 1 , 4 , 9 1,4,9 1,4,9 和 16 16 16 都是完…

NPM 与 Node.js 版本兼容问题:npm warn cli npm does not support Node.js

问题描述与处理策略 1、问题描述 npm warn cli npm v10.9.2 does not support Node.js v18.16.1. This version of npm supports the following node versions: ^18.17.0 || >20.5.0. You can find the latest version at https://nodejs.org/.# 翻译 npm warn cli npm v1…

一文了解 DeepSeek R1 模型:AI 推理领域的革命性突破

网址&#xff1a;DeepSeek 官方网站 2025 年 1 月 20 日&#xff0c;DeepSeek 发布了全新的开源推理大模型 DeepSeek-R1。 这一模型在数学、编程和推理等多个任务上达到了与 OpenAI o1 相当的表现水平&#xff0c;同时将 API 调用成本降低了 90-95%。 这一发布不仅引发了 AI …

GStreamer 简明教程(九):插件开发,以一个音频特效插件为例

系列文章目录 GStreamer 简明教程&#xff08;一&#xff09;&#xff1a;环境搭建&#xff0c;运行 Basic Tutorial 1 Hello world! GStreamer 简明教程&#xff08;二&#xff09;&#xff1a;基本概念介绍&#xff0c;Element 和 Pipeline GStreamer 简明教程&#xff08;三…

FPGA实现任意角度视频旋转(二)视频90度/270度无裁剪旋转

本文主要介绍如何基于FPGA实现视频的90度/270度无裁剪旋转&#xff0c;关于视频180度实时旋转&#xff0c;请见本专栏前面的文章&#xff0c;旋转效果示意图如下&#xff1a; 为了实时对比旋转效果&#xff0c;采用分屏显示进行处理&#xff0c;左边代表旋转前的视频在屏幕中…