हैश (en. Hash)
Translation into Hindi
Ideally, the hash function will assign each key to a unique bucket, but most hash table designs employ an imperfect hash function, which might cause hash collisions where the hash function generates the same index for more than one key.
आदर्श रूप से, हैश फ़ंक्शन प्रत्येक कुंजी को एक अद्वितीय बकेट को असाइन करेगा, लेकिन अधिकांश हैश टेबल डिज़ाइन एक अपूर्ण हैश फ़ंक्शन को नियोजित करते हैं, जो हैश टकराव का कारण बन सकता है जहां हैश फ़ंक्शन एक से अधिक कुंजी के लिए एक ही इंडेक्स बनाता है।
Example taken from data source: Samanantar_v0.2 You obviously cannot re-create the original data from the hash, but you can hash the data again to see if the same hash value is generated.
आप स्पष्ट रूप से हैश से मूल डेटा को फिर से नहीं बना सकते हैं, लेकिन आप डेटा को फिर से देख सकते हैं यह देखने के लिए कि क्या हैश मान उत्पन्न होता है या नहीं।
Example taken from data source: CCMatrix_v1 Hash tables are commonly used to implement many types of in-memory tables.
हैश टेबल का उपयोग आमतौर पर कई प्रकार के इन-मेमोरी टेबल को लागू करने के लिए किया जाता है।
Example taken from data source: Samanantar_v0.2 A hash table is an unordered data structure and there are many types of queries which hash indexes cannot even help with.
हैश टेबल को डेटा संरचनाओं को क्रमबद्ध नहीं किया जाता है, और ऐसे कई प्रकार के प्रश्न हैं जिनके पास हैश इंडेक्स भी मदद नहीं कर सकते हैं।
Example taken from data source: CCMatrix_v1 In many situations, hash tables turn out to be on average more efficient than search trees or any other table lookup structure.
कई स्थितियों में, हैश टेबल औसत रूप से खोज पेड़ों या किसी अन्य टेबल लुकिंग संरचना की तुलना में अधिक कुशल हैं।
Example taken from data source: Samanantar_v0.2 Changing every value in a hash in Ruby.
रूबी में हैश में हर मूल्य बदलना.
Example taken from data source: CCAligned_v1 How to replace a hash key with another key.
किसी अन्य कुंजी के साथ हैश कुंजी को कैसे बदलें.
Example taken from data source: CCAligned_v1