在C++中,要實現文件的隨機讀取,你可以使用<fstream>
庫中的seekg()
和tellg()
函數來定位文件指針。以下是一個簡單的示例:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <ctime>
#include <cstdlib>
int main() {
// 打開文件
std::ifstream file("example.txt", std::ios::binary | std::ios::in);
if (!file) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
// 獲取文件大小
file.seekg(0, std::ios::end);
std::streamsize fileSize = file.tellg();
file.seekg(0, std::ios::beg);
// 創建緩沖區
std::vector<char> buffer(fileSize);
// 讀取文件內容到緩沖區
if (!file.read(buffer.data(), fileSize)) {
std::cerr << "讀取文件失敗" << std::endl;
return 1;
}
// 關閉文件
file.close();
// 設置隨機數種子
std::srand(std::time(0));
// 隨機讀取文件
while (fileSize > 0) {
// 生成一個隨機位置
std::streamsize randomPos = std::rand() % fileSize;
// 將文件指針移動到隨機位置
file.seekg(randomPos, std::ios::beg);
// 讀取一個字符
char randomChar;
file.get(randomChar);
// 輸出隨機字符
std::cout << randomChar;
// 更新文件大小和隨機位置
fileSize--;
}
return 0;
}
這個示例中,我們首先打開一個名為example.txt
的文件,并獲取其大小。然后,我們創建一個緩沖區并將文件內容讀取到緩沖區中。接下來,我們設置隨機數種子,并在循環中隨機讀取文件內容。每次迭代時,我們都會生成一個隨機位置,將文件指針移動到該位置,并讀取一個字符。最后,我們將讀取到的字符輸出到控制臺。