Advertisements
Advertisements
प्रश्न
Define a class to accept 10 characters from a user. Using bubble sort technique arrange them in ascending order. Display the sorted array and original array.
उत्तर
import java.util.*;
public class Charsort {
public static void bubbleSort(char[] array) {
int num = array.length;
char temp = 0;
for (int i = 0; i < num; i++) {
for (int j = 1; j < (num - i);j++) {
if (array[j - 1] > array[j]) {
temp = array[j - 1];
array[j - 1] = array[j];
array[j] = temp;
}
}
}
}
public static void main(String[] args) {
char array[] = new char[10];
Scanner sc=new Scanner(System.in);
System.out.println(;'Enter 10 characters:");
for(int i=0;i<10;i++)
array[i]=sc.nextLine().charAt(0);
System.out.println("Array Before Bubble Sort:
" + Arrays.toString(array));
bubbleSort(array);
System.out.println("Array After Bubble Sort:"
+ Arrays.toString(array));
}
}
APPEARS IN
संबंधित प्रश्न
Write a program to input 15 integer elements in an array and sort them in ascending order using the bubble sort technique.
Name the following :
(i) A keyword used to call a package in the program.
(ii) Any one reference data type.
Differentiate between searching and sorting.
Write a program to input forty words in an array. Arrange these words in descending order of alphabets, using selection sort technique. Print the sorted array.
Write a program to accept a name and total marks of N number of students in two single subscript array name[] and totalmarks[].
Calculate and print:
- The average of the total marks obtained by N Number of students.
[average = (sum of total marks of all the students)/N] - Deviation of each student’s total marks with the average
[deviation = total marks of a student – average]
Find the errors in the given program segment and re-write the statements correctly to assign values to an integer array.
int a = new int (5);
for (int i = 0; i < = 5; i++) a [i] = i;
Consider the given array and answer the question given below:
int x[ ] {4; 7,9,66,72,0,16);
What is the length of the array?
Consider the given array and answer the question given below:
int x[ ] {4; 7,9,66,72,0,16);
What is the value in x[4]?
Define a class to accept values into an array of double data type of size 20. Accept a double value from user and search in the array using linear search method. If value is found display message "Found" with its potiition where it is present in the array. Otherwise display message "not found".
Define a class to search for a value input by the user from the list of values given below. If it is found display the message "Search successful", otherwise display the message "Search element not found” using Binary search technique.
5.6, 11.5, 20.8, 43.1, 52.4, 66.6, 78.9, 80.0, 95.5.