Data Structure Using Java

                                                                               Data Structure

Index:

1. Search Technique
     a) Liner Search
     b) Binary Search
     c) Hashing 

2. Sorting Technique
     a)Insertion Sort
     b)Selection Sort
     c)Merge Sort
     d)Heap Sort
     e)Bubble Sort
     f)Quick Sort
     g)Counting Sort
     h)Radix Sort
     i)Bucket Sort
     
3) Link List

4) Advantage of Web services



Q1.   What is search technique in programming language? 

Ans:-   Searching is the algorithmic process of finding a particular item in a collection of items. A search typically answers either True or False as to whether the item is present. On occasion it may be modified to return where the item is found.Searching is the algorithmic process of finding a particular item in a collection of items. A search typically answers either True or False as to whether the item is present. On occasion it may be modified to return where the item is found.

A search typically answers either True or False as to whether the item is present. On occasion it may be modified to return where the item is found. For our purposes here, we will simply concern ourselves with the question of membership.

There are three types of searching in programming language.

1) Linear Search or sequential search

2) Binary Search

3) Hashing Technique



click here for Sorting Technique....

Sorting Technique

click here for Link List java implementation

Link List






Comments

Post a Comment

Popular posts from this blog

Insertion Sort

What is Selection Sort? And how it works?