Posts

Showing posts from October, 2018

WAP TO MERGE TWO ARRAY INTO SINGLE DIMENSION ARRAY

import java.util.*; class mergeapc {     public static void main(String args[])     {             int n,i,m,p;             Scanner sc=new Scanner(System.in);             System.out.println("Enter the no.of element for A");             n=sc.nextInt();             System.out.println("Enter the no.of element FOR B");             m=sc.nextInt();             System.out.println("Enter the no.of element FOR C");             p=sc.nextInt();             int a[]=new int[n];             int b[]=new int[m];             int c[]=new int[p];             System.out.println("Enter the array element for 1st"); ...

WAP IN JAVA TO INSERT AN ELEMENT IN AN ARRAY

import java.util.*; class INSERT {     public static void main(String args[])     {             int n,t,j,i,p;             Scanner sc=new Scanner(System.in);             System.out.println("Enter the no.of element");             n=sc.nextInt();             int a[]=new int[50];             System.out.println("Enter the array element");             for(i=0;i<n;i++)             {                     a[i]=sc.nextInt();             }             System.out.println("Enter the ELEMENT to INSERTED");             int ins=sc.nextInt();             System...

WAP TO DELETE AN ELEMENT IN AN ARRAY

import java.util.*; class delete {     public static void main(String args[])     {             int n,t,j,i,p;             Scanner sc=new Scanner(System.in);             System.out.println("Enter the no.of element");             n=sc.nextInt();             int a[]=new int[n];             System.out.println("Enter the array element");             for(i=0;i<n;i++)             {                     a[i]=sc.nextInt();             }             System.out.println("Enter the position to delete");             p=sc.nextInt();             for(i=0;i<n...

WAP IN JAVA TO FIND THE MAXIMUM AND MINIMUM ELEMENT IN AN ARRAY

import java.util.*; class MAX_MIN {     public static void main(String args[])     {         int n,i,max,min;         Scanner sc=new Scanner(System.in);         System.out.println("Enter the number");         n=sc.nextInt();         int a[]=new int[n];         System.out.println("Enter the array element");         for(i=0;i<n;i++)         {             a[i]=sc.nextInt();         }         max=a[0];         min=a[0];         for(i=1;i<n;i++)         {             if(a[i]>max)             {                 max=a[i];           ...

WAP TO SEARCH THE ELEMENT I AN GIVEN ARRAY USING BINARY SEARCH

import java.util.*; class BINARY {     public static void main(String args[])     {         int n,s,i,f=0,lb,ub,mid;         Scanner sc=new Scanner(System.in);         System.out.println("Enter the number");         n=sc.nextInt();         int a[]=new int[n];         System.out.println("Enter the array element");         for(i=0;i<n;i++)         {             a[i]=sc.nextInt();         }         System.out.println("Enter the searched element");         s=sc.nextInt();         lb=0;         ub=n-1;         while(lb<=ub)         {             mid=(lb+ub)/2;         ...

WAP TO SEARCH THE ELEMENT IN AN GIVEN ARRAY USING LINEAR SEARCH

import java.util.*; class linear {     public static void main(String args[])     {         int n,s,i,f=0;         Scanner sc=new Scanner(System.in);         System.out.println("Enter the number");         n=sc.nextInt();         int a[]=new int[n];         System.out.println("Enter the array element");         for(i=0;i<n;i++)         {             a[i]=sc.nextInt();         }         System.out.println("Enter the searched element");         s=sc.nextInt();         for(i=0;i<n;i++)         {             if(a[i]==s)             {                 f=1; ...

WAP TO SORT THE GIVEN ARRAY USING INSERTION SORT

import java.util.*; class insersort {     public static void main(String args[])     {         Scanner sc= new Scanner(System.in);         int a[]=new int[50];         int n,i,temp,j;         System.out.print("Enter the number of elements");         n=sc.nextInt();         System.out.print("Enter the numbers");         for(i=0;i<n;i++)         {             a[i]=sc.nextInt();         }                 for ( i = 1 ; i <n ; i++ )         {         for ( j = 0 ; j < i ; j++ )         {             if ( a[j] > a[i] )             {             ...

WAP IN JAVA TO SORT THE ELEMENT IN ASCENDING ORDER USING BUBBLE SORT

import java.util.*; class bubblesort {     public static void main(String args[])     {             int n,t,j,i;             Scanner sc=new Scanner(System.in);             System.out.println("Enter the no.of element");             n=sc.nextInt();             int a[]=new int[n];             System.out.println("Enter the array element");             for(i=0;i<n;i++)             {                     a[i]=sc.nextInt();             }             for(i=0;i<n-1;i++)             {                 for(j=0;j<n-i-1;j++)     ...

WAP IN JAVA TO SORT AN GIVEN ELEMENT IN AN ARRAY USING SELECTION SORT

import java.util.*; class selection {     public static void main(String args[])     {             int n,t,j,i;             Scanner sc=new Scanner(System.in);             System.out.println("Enter the no.of element");             n=sc.nextInt();             int a[]=new int[n];             System.out.println("Enter the array element");             for(i=0;i<n;i++)             {                     a[i]=sc.nextInt();             }             for(i=0;i<n-1;i++)             {                 for(j=i+1;j<n;j++)      ...