Skip to main content

Posts

List Search

Well Hello there!! From this blog myself would love to go with List search algorithms. What are they ? Linear Search Binary Search At the end of this Blog you will able to gain the knowledge about these two searching algorithms perfectly. Let's go deep then ! Linear Search  This algorithm is also known as sequential search when it's comes to the programming.      "Linear Search is an algorithm for searching through elements of an array" Let's try searching for the number 6.(Our objective is equals to Find 6) First we examine the left most number in the array.In this Example it's 3. We compare it with 6,and if it matches, the search ends. If it doesn't match we examine the next number to the right.In this case 9 is the next number.                                       We repeat this comparisons until the 6 is found.       ...

Security- Hash Functions

Here we go again bloggers !! It's time to learn some security basics with HASH Functions. It's not what you think It's something good more than HASH. No more jokes! Dive in A "hash function" is a function that converts the data it's given into an irregular value of fixed length. A hash Function might be easier to understand if we imagine it as blender                                              When we input data into a hash function..                                                         It outputs an irregular value If we imagine a hash function as a machine that blends up data,it's easier to understand.The irregular output from a hash is called a "hash value". Hash values are numbers, but are ofte...