awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 个仓库

Awesome GitHub RepositoriesFrequency Table Generation

Analysis of data streams to count value occurrences for use in lossless compression.

Distinct from Data Compression Algorithms: Focuses on the specific counting phase required for Huffman coding, distinct from the overall compression algorithm.

Explore 2 awesome GitHub repositories matching data & databases · Frequency Table Generation. Refine with filters or upvote what's useful.

Awesome Frequency Table Generation GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • kodecocodes/swift-algorithm-clubkodecocodes 的头像

    kodecocodes/swift-algorithm-club

    29,099在 GitHub 上查看↗

    This project is a comprehensive collection of common computer science algorithms and data structures implemented in Swift. It serves as an educational reference and library for studying computational complexity, algorithmic logic, and data structure engineering through practical code examples. The repository provides a wide suite of data structure implementations, including various types of linked lists, heaps, hash tables, and an extensive range of hierarchical trees such as Red-Black, B-Tree, and Splay trees. It also covers diverse sorting and searching techniques, from basic bubble sort to

    Provides byte stream analysis to generate frequency tables for compression algorithms.

    Swiftalgorithmsdata-structuresswift
    在 GitHub 上查看↗29,099
  • mozilla/mozjpegmozilla 的头像

    mozilla/mozjpeg

    5,685在 GitHub 上查看↗

    Mozjpeg 是一个高性能 C 库,用于编码、解码和转码 JPEG 图像。它作为标准 JPEG 库的二进制兼容、直接替换方案,保持现有的函数签名,从而在无需更改应用逻辑的情况下提高压缩效率。 该库作为一个图像优化器,通过无损渐进式编码和系数优化来减小文件大小。它利用基于网格的量化和 SIMD 加速处理来优化视觉质量与文件大小之间的权衡。 其更广泛的功能包括全面的图像编码与解码、色彩空间转换和分量下采样。该架构设计为可重入且线程安全,允许并发处理多个图像。它还具有专门的元数据管理功能,用于通过标记拆分处理大型 ICC 颜色配置文件。

    Generates optimized encoding tables based on symbol frequency to maximize compression efficiency and minimize data stream size.

    C
    在 GitHub 上查看↗5,685
  1. Home
  2. Data & Databases
  3. Data Compression Algorithms
  4. Frequency Table Generation

探索子标签

  • Huffman Table OptimizationsGenerates encoding tables based on symbol frequency to maximize compression efficiency. **Distinct from Frequency Table Generation:** Distinct from Frequency Table Generation: focuses on the optimization of Huffman tables for JPEG encoding, not general frequency counting.