亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

C++ zip庫對LZ77算法的實現

發布時間:2024-08-12 13:07:31 來源:億速云 閱讀:91 作者:小樊 欄目:編程語言

以下是一個簡單的C++實現LZ77算法的zip庫示例代碼:

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

using namespace std;

class LZ77 {
public:
    vector<pair<int, int>> compress(const string& input, int windowSize, int bufferSize) {
        vector<pair<int, int>> compressedData;
        int pos = 0;

        while (pos < input.length()) {
            int windowStart = max(0, pos - windowSize);
            int windowEnd = pos - 1;
            int bestMatchPos = -1;
            int bestMatchLen = 0;

            for (int i = windowStart; i < windowEnd; i++) {
                int len = 0;
                while (input[pos + len] == input[i + len] && len < bufferSize) {
                    len++;
                }

                if (len > bestMatchLen) {
                    bestMatchPos = i;
                    bestMatchLen = len;
                }
            }

            if (bestMatchLen > 0) {
                compressedData.push_back({pos - bestMatchPos, bestMatchLen});
                pos += bestMatchLen;
            } else {
                compressedData.push_back({0, input[pos]});
                pos++;
            }
        }

        return compressedData;
    }

    string decompress(const vector<pair<int, int>>& compressedData) {
        string decompressedData;
        
        for (auto& entry : compressedData) {
            if (entry.first == 0) {
                decompressedData += entry.second;
            } else {
                int pos = decompressedData.length() - entry.first;
                for (int i = 0; i < entry.second; i++) {
                    decompressedData += decompressedData[pos + i];
                }
            }
        }

        return decompressedData;
    }
};

int main() {
    LZ77 lz77;

    string input = "abracadabra";
    int windowSize = 4;
    int bufferSize = 4;

    vector<pair<int, int>> compressedData = lz77.compress(input, windowSize, bufferSize);
    string decompressedData = lz77.decompress(compressedData);

    cout << "Original data: " << input << endl;
    cout << "Compressed data: ";
    for (auto& entry : compressedData) {
        cout << "(" << entry.first << ", " << entry.second << ") ";
    }
    cout << endl;
    cout << "Decompressed data: " << decompressedData << endl;

    return 0;
}

在上面的示例中,我們定義了一個LZ77類,其中包含了壓縮和解壓縮函數。在壓縮函數中,我們首先定義了窗口大小和緩沖區大小,然后遍歷輸入字符串,找到最佳匹配位置和長度。最后,將匹配位置和長度或者字面值字符存入壓縮數據中。在解壓縮函數中,我們根據壓縮數據重新構建原始數據。在主函數中,我們使用示例輸入數據調用壓縮和解壓縮函數,并輸出壓縮和解壓縮的結果。

向AI問一下細節

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

c++
AI

新丰县| 宜君县| 外汇| 太和县| 泰和县| 古蔺县| 苍溪县| 南岸区| 胶州市| 宜黄县| 靖宇县| 开远市| 淮南市| 色达县| 天镇县| 武穴市| 宾川县| 镇原县| 张家口市| 灵川县| 塘沽区| 枣阳市| 永平县| 鹤庆县| 弥渡县| 柘城县| 东丰县| 梨树县| 云林县| 旬邑县| 宜昌市| 昔阳县| 亚东县| 潮安县| 正定县| 富民县| 五原县| 寻甸| 泸溪县| 林西县| 南部县|