Search Articles — Sudonull

Search Results

In this project

Hash tables and cache conflicts: benchmarks

https://sudonull.com/hash-tables-and-cache-conflicts-benchmarks

Analysis of cache misses in hash tables: chaining vs probing, FNV-1a, Robin Hood. Benchmarks show a 3x speedup. Optimize data structures for real performance — read the details.

O(1) vs O(log n) Gap: Cache in Data Structures

https://sudonull.com/o-1-vs-o-log-n-gap-cache-in-data-structures

Why hash table O(1) loses to binary search O(log n) by 40%? Analysis of cache misses, array/list benchmarks and memory hierarchy for RISC-V. Learn real performance.

Search Algorithms O(log n) vs O(n) in Python

https://sudonull.com/search-algorithms-o-log-n-vs-o-n-in-python

Breakdown of linear, binary, exponential search and hash tables. Code, complexity, selection checklist. For middle/senior developers. Benchmarks and LeetCode examples.

ART Prefix Trees: Memory and Cache Optimization

https://sudonull.com/art-prefix-trees-memory-and-cache-optimization

Learn how to optimize prefix trees from 825 MB to 18 MB. ART benchmarks, radix trees and comparison with hash tables for autocomplete. Real code and metrics.

Perceptual hash: search for similar images

https://sudonull.com/perceptual-hash-search-for-similar-images

How perceptual hashing algorithms work: from simple averaging to DCT. Comparison of methods and practical application for developers.

From the web

Hash Generator | Online MD5, SHA256, SHA512 & SHA3 Tool

https://hashgenerator.co/

Free online hash generator for text and files. Generate MD5 hashes, SHA256 hashes, SHA-512, SHA-3 and BLAKE2b checksums with HMAC support in your browser.

Hash function - Wikipedia

https://en.m.wikipedia.org/wiki/Hash_function

The hash function differs from these concepts mainly in terms of data integrity. Hash tables may use non-cryptographic hash functions, while cryptographic hash functions are used in cybersecurity to …

What is a (#) Hashtag?

https://www.hashtags.org/how-to/history/what-is-a-hashtag/

Jun 24, 2012 · The hash mark, or pound symbol, (#) is now known by social media users as a "hashtag" or "hash tag". Posts that have the same keywords prefixed with the # symbol are grouped together in …

What Is Hash? Hashish VS Marijuana: Differences & Similarities

https://www.avenuesrecovery.com/understanding-addiction/marijuana-addiction/what-is-hash/

May 19, 2026 · Hash is made of the resinous trichomes found on the leaves and flowers of the Cannabis sativa plant. It is a sticky substance that is compressed into a paste and sold as a brick or a ball.

Hashish - Wikipedia

https://en.m.wikipedia.org/wiki/Hashish

Hash is a cannabis extract, made when trichomes, the resinous glands that line the surface of cannabis plants, are removed and processed into a concentrated form.

Hash decoder and calculator (hash and unhash) - MD5Hashing

https://md5hashing.net/hash

Try various hashing functions, discover hash database, and decode/unhash hash digest via reverse lookup

What is Hashing? - Codecademy

https://www.codecademy.com/resources/blog/what-is-hashing

Mar 27, 2025 · Hash functions are designed to make it impossible to regenerate a message or file from the hash value. In fact, if the hashing function can be reversed to recreate the original input, it’s …

Hash Functions - GeeksforGeeks

https://www.geeksforgeeks.org/dsa/hash-functions-and-list-types-of-hash-functions/

Apr 7, 2026 · A hash function is a function that takes an input (or key) of arbitrary size and converts it into a fixed-size value, called a hash value or hash code. For example, using the modulo method:

What Is a Hash and How Does It Work? | Cybersafety

https://cibersafety.com/en/what-is-a-hash-and-how-does-it-work/

Feb 7, 2025 · Learn what a hash is, how it works, and why it's important for data and password security. We'll tell you the details.

Introduction to Hashing - GeeksforGeeks

https://www.geeksforgeeks.org/dsa/introduction-to-hashing-2/

Jan 29, 2026 · Hashing uses mathematical formulas known as hash functions to do the transformation. This technique determines an index or location for the storage of an item in a data structure called …

Trending Now