3 个仓库
Algorithms that partition data into blocks to optimize search and update efficiency.
Distinct from Algorithmic Problem Solving: Focuses on data partitioning into blocks for efficiency, distinct from general algorithmic problem solving patterns.
Explore 3 awesome GitHub repositories matching software engineering & architecture · Block-Based Algorithms. Refine with filters or upvote what's useful.
A fast and clever hex editor for macOS
Implements a fast hash-based block diff engine for comparing binary files.
HexFiend is a native macOS hex editor designed for opening and editing binary files of any size without loading them entirely into memory. It uses a 64-bit addressable data model with memory-mapped file access, enabling navigation of multi-gigabyte files while maintaining byte-level undo for insert and delete operations. The editor distinguishes itself through a diff algorithm for binary file comparison that accounts for insertions and deletions, and a template-based structure parsing system that uses user-defined scripts to visualize binary file layouts. It also includes a typed data interpr
Ships a custom binary diff engine that detects insertions and deletions between files.
python-build-standalone 是一个旨在跨多种操作系统和硬件架构生成可再分发 Python 可执行文件的工具链。它生成独立的 Python 二进制文件,无需预安装系统解释器即可分发给用户。 该项目使用目标三元组 (Target triples) 和容器化环境管理跨平台编译的端到端过程,以确保二进制输出的一致性。它包含一个分发管道,可自动化生成构建矩阵,并将编译后的工件上传到公共发布页面和镜像存储桶。 该工具集还提供二进制发布分析功能,允许通过可视化报告比较两个编译后的二进制文件,以识别版本之间的意外更改。这涵盖了构建工具链标准化、发布管理和工件镜像的完整生命周期。
Includes tools for visual comparison of binary contents to detect unexpected changes between versions.