91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

c++怎么實現讀寫文件

發布時間:2021-12-08 14:05:20 來源:億速云 閱讀:141 作者:iii 欄目:大數據

這篇文章主要講解了“c++怎么實現讀寫文件”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“c++怎么實現讀寫文件”吧!

#include <iostream>
#include <fstream>
#include <assert.h>
#include <map>
using namespace std;
int stupidKmp(const char* dest, const char* src, int pos)
{
    int i=pos;
    int j=0;
    while(dest[i+j] && src[j])
    {
        if(dest[i+j]==src[j])
        {
            j++;
        }
        else
        {
            i++;
            j=0;
        }
    }
    if(src[j]=='\0')
    {
        return i;
    }
    else
    {
        return -1;
    }
}

int main()
{
    map<int, int>mymap;
    char src[]="abc";
    int H=1;
    ifstream readfile("./find.cpp",ios::in);
    ofstream write;
    write.open("./newfind.cpp");
    string line;
    if(! readfile)
    {
        assert(false);//fail open
    }
    while(! readfile.eof())
    {
        getline(readfile,line);
        write<<line.c_str()<<endl;
        int V=stupidKmp(line.c_str(),src,0);
        if(V != -1)
        {
            mymap.insert(make_pair(H,V));
        }
        H++;
    }
    readfile.close();
    write.close();
    for(map<int ,int>::iterator iter=mymap.begin(); iter!=mymap.end(); iter++)
    {
        int first = iter->first;
        int second=iter->second;
        cout<< "row:"<<first<<" "<<"col:"<<second<<endl;
    }
    return 0;
}
find.cpp
aasssdafaabcdfadfaffs
dfafefaefaabcsdfefas
afefaseascabcasefwe
aerfawefasabefae
aeertawefabcasefawe
aererawfaabcwf3
aefe3faaabcwfwe
abc

感謝各位的閱讀,以上就是“c++怎么實現讀寫文件”的內容了,經過本文的學習后,相信大家對c++怎么實現讀寫文件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

鄂尔多斯市| 巩留县| 镇远县| 江西省| 原阳县| 河北区| 黎川县| 彩票| 双江| 陆良县| 崇信县| 淳化县| 乌拉特前旗| 鹰潭市| 文昌市| 确山县| 沧源| 宜黄县| 阿瓦提县| 昌江| 调兵山市| 鹤峰县| 三穗县| 阳东县| 南宫市| 哈巴河县| 苏尼特右旗| 嵊泗县| 长岭县| 车险| 陵水| 大余县| 广南县| 天镇县| 桃江县| 山西省| 四会市| 普兰店市| 岳池县| 河西区| 西乌|