×

Simple hash() function in C

Introduction

In this context, we briefly discuss HASH FUNCTION, HASHING or HASH TABLE in C. It is a function used to map data and mapped arbitrary sizes to the fixed-size values.

The most crucial topic in hashing is “SEARCHING”, which determines the time complexity. It reduce time complexity. The data is stored in the array format in the

Simple hash function in C

hash table. It is a faster technique and also very useful. This table held the data in an associative manner.

In this above diagram, we have seen that the actual data is to be stored in the hash key. The key value goes to the hash function. The hash function moved towards the hash value.

The hash value stored in the hash table.

By this diagram we can see that how hash function is works in C language.

What is Hash Function?

In the hash function, H accepted a variable-length block of input known as M and produced the fixed size of the hash value. That value is represented as:                                               

 h = H (M)

The Hash function uses the operation of the constant time. The function is converted a significant number into a small integer form. This function is to store values. It is also used to recover the values from the hash table. This is also used as the address in the hash table.

What are the 3 main properties of the HASH FUNCTION ?

There are three main properties of the secure hash function: Pre-image resistance, Second pre-image resistance, and collision resistance.

What is meant by the good hash function in C ?

A hash function should have the following properties. This properties is determine whether the function is good or bad. The properties are :

  1. In this function, Keys are should be uniformly distributed.
  2. The efficiency of this function should be computable.

Why we use the hash function?

The Hash function uses to store the values. It reduces values from a database because it helps accelerate the process.

Types of hash function in C

The types of hash function in C language are :

  1. Division Method
  2. Mid Square Method
  3. Digit Folding Method
  4. Multiplication Method

Now we are briefly discuss in these method :

1.Division Method :  This method is the most accessible and straightforward method to generate the hash value. The hash function depends upon the reminder of a division; if the hash function divides the value X by M, then the remainder is obtained.

Formula of direct method:

h (x) = x mod M

here,

x is the value of key

M is the size of the hash table

M is the prime number because it is decided that the keys value are uniformly distributed.

Example :

If the value,
x = 1234
M = 4
h (1234) = 1234 mod 4
  =2

Advantage :

  • This method is a speedy operation.
  • This method requires only a single division operation and is suitable for the value M.

Disadvantage :

  • We need to take extra care in choosing the value M.
  • The division method leads to poor performance.

2. Mid Square Method : In the mid-square method, the middle part of the square element takes as the index. It is a perfect and valuable hashing method. In this method, two steps require to compare the hash value. The steps are:

Square the value of the key. Which means X2. Exact the middle r digit as the hash value. The value of the r is to be decided based on the size of the table value.

Formula :

h (X) = h (X * X)

here , X is the key value .

Example :

X = 50
X * X = 50 * 50
	   =2500
h (X) = h (X * X)
h (50) = 50
\The hash value is 6

Advantage :

  • In this method, the result is not dominated by the distribution of the top or bottom digit of the main key value.
  • The performance is good in this method.

Disadvantage :

  • In this method, if the size of the key is significant, then its square will double the number of digits.
  • In the mod square method, there is a collision present.

3. Digit Folding Method : The digit folding method is done in two steps:

In this method, the value of key or critical X divides into several parts that are X1, X2, X3, X4………Xn.

Each part contains the same number of digits except the last part because it contains less number of digits than the other part. Then, each part is added, and the hash value we find by ignoring the last carry.

Formula :

X = the key value
X = X1 ,X2, X3, X4 ……… Xn
Sum = X1 + X2 + X3 + X4 + ……… + Xn
h(X) = Sum

Here,

Sum is find by adding the parts of key X.

Example :

X = 170316
X1 = 17 ,X2 = 03, X3 = 16
Sum = X1 + X2 + X3
 =17+03+16
   =36
h (X) = 36

4. Multiplication Method : The multiplication method is done by following steps At first, choose a value Y. The value of Y is 0<Y<1.

The key value is X.

Multiply X with Y and extract the functional part from XY.

Then multiply the value of XY with the value of hash table M. The hash value finds by taking the resulting floor in step (iii).

Formula :

h (X) = floor (M(XY mod 1 ))

here,

  • X is the Key value
  • K is the choose value or constant value
  • M is the size or value of the hash table

Example :

X = 1256
Y = 0.523
M = 10
h (1256) = floor (10(1256 * 0.523 mod 1))
= floor (10(656.888 mod 1))
= floor (10(0.888))
= floor (8.88)
= 8

Advantage: The multiplication method is easy to use. This method can work at any value between 0 to 1. The user can easily understand this method.

Disadvantage: The multiplication method depends on the size of the table value. The table value should be in the power of the two, which means table value = 2n [n = 1, 2, 3 …..].Then the whole process of computing the index using hashing value is too fast.

Collision resolution Technique : Collision is storage or condition when two or more data items arrive in the exact location. The collision resolution techniques are mainly two types.

 The techniques are :

  1. Chaining - This is also known as Open hashing.
  2. Open addressing – This is also known as Close hashing.

We want to make an external chain. This technique is also known as open hashing because the provided space, and open space, are used in this hashing. This method gives some chains or boxes for the record that needs two-element entries.

Example – 24, 19, 32, 44, 51 with the hash table size 6

Hash (key) = 24 % 6 = 0

Hash (key) = 19 % 6 = 1

Hash (key) = 32 % 6 = 2

Hash (key) = 44 % 6 = 2

Hash (key) = 51 % 6 = 3

024
119
232
351
4Null
5Null

Table no two is already packed with the data 32; that’s why a chain connects 44 in table 2. This is the method of chaining.

Open Addressing : Open addressing means the provided space in the hash table utilizes first. This is also known as closed hashing. Open addressing is divided into three parts – (i) Linear Probing, (ii) Quadratic Probing, and (iii) Double Hashing.

1.Linear Probing –

The Linear Probing method is another technique for collision resolution. In this method, we don’t space the 2 data in one table. By this method, we placed the second data in the following empty table or the space. But if no open space is founded, then it leads to clustering. Then this problem is also known as the clustering problem.

Example - 24, 19, 32, 44 with the hash table size 6

Hash (key) = 24 % 6 = 0

Hash (key) = 19 % 6 = 1

Hash (key) = 32 % 6 = 2

Hash (key) = 44 % 6 = 2

024
119
232
344
4Null
5Null

In this diagram, the data 32 and 44 are wanted to place in table no 2, but this method doesn’t allow it. So 32 set table no 2 and 44 sets next empty space, i.e. table no 3.

2.Quadratic Probing –

This method is used to solve the problem which is arrived at by linear probing. The Quadratic Probing method resolves the problem of clustering. The hash function with the hash key is calculated as :

hash (key) = (hash (key) +x*x ) % (size of the hash table)

[x = 1, 2, 3, 4,…….]

Example –24, 19, 32, 44 with the hash table size 6

Hash (key) = 24 % 6 = 0

Hash (key) = 19 % 6 = 1

Hash (key) = 32 % 6 = 2

Hash (key) = 44 % 6 = 2

024
119
232
344
4Null
5Null

This diagram shows that 24, 19 and 32 are easily placed in the hash table. But in the case of 44, it has the same hash key value as 32. So as per this method, we calculate the Hash key value of 44.

hash (44) = (44+ (1*1)) % 6 = 3

 so the hash key value of 44 is 3. Now we placed 44 in index number 3.

Double Hashing –

Double means two hash functions we can use here. Using two hash functions, we can resolve the collision problem. Two steps do this method : Calculated just using a simple division method. This must not be equal to zero, and entries must be probed.                      

Hash (key)1 = Key % size of the hash table

Hash (key)2 = p – (key mod p) [p is Prime Number  < size of the hash table]

Example – 20, 34, 45, 70 with table size 11

Hash (key) = 20 % 11 = 9

Hash (key) = 34 % 11 = 1

Hash (key) = 45 % 11 = 1

Hash (key) = 70 % 11 = 4

0NULL
134
2NULL
3NULL
445
5NULL
670
7NULL
8NULL
920
10NULL

R1(k) = k mod 11

R2(k) = 8 – ( k mod 8 )

In this diagram , the element 45 can be placed using hash 2(key) = 8 – (45 % 8) = 3

(R1(k) + R2(k)) mod 11

= 1 + 1*3  = 4

So, we place the element 45 in table number 4. Now the hash key value of 70 is 4 . But 45 is already stored in to table number 4 . The element 70 can be placed using hash2(key) = 8 – (70 % 8) = 2

 (R1(k) + R2(k)) mod 11

= 4 + 2 = 6

So, we place the element 70 in table number 6.     

Application of HASH FUNCTION

The hash function is used in programming languages like C, C++, Python, and Java script to implement objects. It is also used in disk-based data structure and database indexing. Hash is used in cryptography and password verification.

Advantage of HASH FUNCTION

The Hash function is more efficient and provides better synchronization than the data structure. It gives a time constant for searching, deletion, and insertion.

Disadvantage of HASH FUNCTION

Main disadvantage of the hash function is a collision. The Hash function also does not allow the null values.

Conclusion

Hashing is very efficient and effective for searching the data. It is a fast method. The hashing is better than any data structure.


Related Topics

How to use floor() function in C

Introduction: The floor() used as a function in the C programming language. This function uses to return the largest or most significant integer value. The integer value is smaller than...

3 minutes read.

Nested Structure in C

In C language, we can create nested Structure (Structure within Structure). There are two ways to define a nested structure. By separate structure By Embedded structure   Separate structure In a separate...

1 minute read.

Formatted Input and output function in C

Formatted I/O functions display multiple outputs to the user by taking various inputs. All data types like int, float, char and double are supported by the formatted I/O function. In...

4 minutes read.

C Switch Statements

Switch-case statement comes under the Selection control statement; there are four types of Control statements Decision-making statements (if, if-else)Selection statements (Switch-case)Iteration statements (for, while, do-while)Jump statements (break, continue, goto) If we want...

4 minutes read.

Derived Data Types in C

A variable in a program occupies some space in the computer's memory where some value is stored. Each variable in C has an associated data type. A value to be...

4 minutes read.

Garbage in C

Garbage in C The C programming language is a perfect fit for embedded systems as it provides low level control, structured programming, and portability. On the contrary, it does not provide...

3 minutes read.

Git Hooks

Git Hooks Overview Just like other version control systems, Git has its way to deliver customized scripts whenever some important activity occurs. The hooks act just like the triggers or catalysts...

4 minutes read.

Exponential() in C

Introduction: In C language, there are available many types of functions. The exponential() function is one of them. It is a mathematical function. This article describes using the pow() property to...

3 minutes read.

Goto and Labels in C

Introduction Goto in C: The goto statement is known as the jump statement in C. The goto is used to transfer the control of a program to a predefined label. The goto...

3 minutes read.

Stdio.h in C

Header files are used to make the programmer’s efforts a lot easier. In order to make the programming simple, there are a number of libraries which are included as predefined...

4 minutes read.

Pi() Function in C

Pi: Mathematic constants are not defined in the c or c++ programming languages. To use the Mathematical constants firstly, we have to define the _USE_MATH_DEFINES and then declare the cmath and...

3 minutes read.

Random function in C

Random function in C In the C programming language, the rand() is a function used for Pseudo Random Number Generator (PRNG). The random number generated by the rand() function is not...

4 minutes read.

Socket Programming in C

Socket programming is a process that connects the two or more nodes on a networking communication with respective to each other. One of the sockets that determines the socket (I.e.,...

5 minutes read.

C Program to Find Largest Number Using Dynamic Memory Allocation

This tutorial will teach us how to locate the highest number a user has ever input into a dynamically allocated memory. C Program: #include <stdio.h> #include <stdlib.h> int main ()  {   int no;   double *data_n;   printf...

1 minute read.

Find median of 1D array using function in C

Introduction: Here, we discuss how we can find the median of a 1D array using a function in C. The median is the value in the middle of the sorted...

3 minutes read.

Variable Declaration in C

What is a Variable? A Variable is nothing more than a name for a memory place where data/information can be stored. Any alphabet (from a to z or A to Z), the...

4 minutes read.

Long int in C

We use data type to avoid the type of data to be stored for a variable at the time of declaration.So, we can say that the variable type is known...

3 minutes read.

getch() function in C

getch() is a pre-define or built-in function present in the conio.h library. It returns the given character immediately without waiting for the enter key to be entered. By using getch()...

3 minutes read.

Control statement in C

What is a control statement? A control statement helps us to control the flow of the program. The control statement helps us to execute the program's instructions in a user-defined order....

8 minutes read.

7 Best IDEs for C/C++ Developers in 2024

As we all know that in programming languages, C is known as the building block which cannot be contradicted, and C++ is the prolong kind of C and it can...

4 minutes read.