我想知道我的应用程序的正确算法和容器类。我正在尝试构建一个客户端-服务器通信系统,其中服务器包含一组文件 (.txt)。文件结构(原型)如下:
A|B|C|D....|Z$(some integer value)#(some integer value)
. 同样是的A to Z
内容a1_a2_a3_a4......aN|b1_b2_b3_b4......bN|......|z1_z2_z3_z4.....zN
。所以我想要做的是当服务器应用程序启动时,它必须一个接一个地加载这些文件并将每个文件的内容保存在一个容器类中,然后再次将文件的内容保存到基于分隔符的特定变量中,即
for (int i=0; i< (Number of files); i++)
{
1) Load the file[0] in Container class[0];
2) Read the Container class[0] search for occurences of delimiters "_" and "|"
3) Till next "|" occurs, save the value occurred at "_" to an array or variable (save it in a buffer)
4) Do this till the file length completes or reaches EOF
5) Next read the second file, save it in Container class[1] and follow the steps as in 2),3) and 4)
}
我想知道是否Vector
或Map
适合我的要求?因为我需要搜索分隔符和push_back
它们的出现并在必要时访问。
我可以将整个单个文件作为块读取并使用缓冲区进行操作,还是在文件只读时使用seekg
我可以将值推送到堆栈?哪一种会更好、更容易实施?使用的可能性是regex
什么?