How to Sort list of Strings in ascending order without using
java api.
Answer / megha
package practise;
import java.util.Scanner;
class Sorting {
public static void main(String[] input)
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter the count :\t ");
int k=sc.nextInt();
String temp=new String();
String names[]=new String[k];
System.out.println("enter the names");
for(int i=0;i<k;i++)
{
names[i] = sc.next();
}
for( int i=0;i<k;i++)
{
for(int j =i+1;j<k;j++)
{
if(names[i].compareTo(names[j])>0)
{
temp = names[i];
names[i] = names[j];
names[j] = temp;
}
}
}
for(String name:names)
{
System.out.println(name);
}
}
}
| Is This Answer Correct ? | 25 Yes | 0 No |
What is the primitive type short?
What is lambda in java?
What are the differences between c++ and java?
Which methods cannot be overridden in java?
What is a string what operation can be performed out with the help of a string?
What are the advantages of packages in java?
what questions are been asked ??? for interview in apti
What does isempty () do in java?
Can we override private method in java?
when i write string s1="java"; in one program(application) and string s2="java"; in another application on the same jvm will both objects s2,s2 will refer to same memory location where "java" is stored in string pool.
Tell me how many ways are there to initialise an integer with a constant.
What is null statement?