Maxtron News, Android KitKat, stock firmware, Flash file, Lava iris, Ulefone Tiger, Mobile App, Marketing Tool, Infinix Stock Roms, Android Multi Tools Latest Version

C# Program should be able to search a value in the array using binary search algorithm

C# Program should be able to search a value in the array using binary search algorithm - for a long time we built this blog Maxtron News with the intention to advance the knowledge of the community about technological developments that continue to advance, because not everyone can enjoy the technology, so you will we present the technology news according to what you need, now we will discuss first about C# Program should be able to search a value in the array using binary search algorithm please refer to the information we provide we feel quite complete because we summarize from reliable sources.

Articles : C# Program should be able to search a value in the array using binary search algorithm
full Link : C# Program should be able to search a value in the array using binary search algorithm
Article Csharp, Article programs,

You can also see our article on:


C# Program should be able to search a value in the array using binary search algorithm

C# Program which takes n values in an array and then program should be able to search a value in the array using binary search algorithm

Program Statement:
Write a program which takes n values in an array and then program should be able to search a value in the array using binary search algorithm. Hint: You have to sort that array first because binary search can be applied only on sorted array

Solution:
 public class search
{
int n, num, s = 1, e, mid;
public void show()
{
Console.Write("\n\t\tEnter length of array : ");
n = Convert.ToInt32(Console.ReadLine());
int[] array = new int[n];
Console.WriteLine("\n\t\tEnter {0} numbers : ", n);
for (int i = 0; i < n; i++)
{
array[i] = Convert.ToInt32(Console.ReadLine());
}
for (int x = 0; x < n; x++)
{
for (int y = x + 1; y < n; y++)
{
if (array[x] > array[y])
{
int temp;
temp = array[y];
array[y] = array[x];
array[x] = temp;
}
}
}
Console.Write("\n\t\tEnter number to search : ");
num = Convert.ToInt32(Console.ReadLine());
e = n;
mid = (s + e) / 2;
if (num == array[mid])
{ Console.Write("\n\t\tElement {0} found!\n\n", array[mid]); }
else if (num < array[mid])
{
for (int x = 0; x < mid; x++)
{
if (num == array[x])
{ Console.Write("\n\t\tElement {0} found!\n\n", array[x]); }
}
}
else if (num < array[mid])
{
for (int y = mid; y < n; y++)
{
if (num == array[y])
{ Console.Write("\n\t\tElement {0} found!\n\n", array[y]); }
}
}
else
Console.WriteLine("\n\t\tElement not found!\n\n");
}
}




just so much information C# Program should be able to search a value in the array using binary search algorithm

hopefully the article that we make this C# Program should be able to search a value in the array using binary search algorithm can be useful for you in adding science about gadgets that continue to advance.

you just read the article with title C# Program should be able to search a value in the array using binary search algorithm if you wish to bookmark or share it please use link https://katieandmaxtron.blogspot.com/2014/01/c-program-should-be-able-to-search.html to get more information please visit our other blog page.

Tag : , ,
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : C# Program should be able to search a value in the array using binary search algorithm

  • C# Program to Print TrianglesC# Program to Print TrianglesProgram Statement:Write a program to produce the following output:A B C D E F G F E D C B AA B C D E F     F E D C B AA B C D E &n ...
  • Program to Print Armstrong numbers in C#C# Program to Print out all Armstrong numbers between 1 and 500Program Statement:Write a program to print out all Armstrong numbers between 1 and 500. If sum of cubes of ...
  • C# Program to solve different problemsC# Program to solve different problemsProgram Statement:Write a program which will take input a character ‘a’ value from user. You have to use switch statement to decide ...
  • C# Program to find Area of TriangleC# Program to find Area of TriangleProgram Statement:If the lengths of the sides of a triangle are denoted by a, b, and c, then area of triangle is given byArea = SS(S- ...
  • C# Program to display the different series output on the screenC# Program to display the different series output on the screenProgram Statement:Write a program which display the following output on the screen.1 2 3 4 51 4 9 16 251 8 ...

0 komentar:

Posting Komentar