-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bubble_sort.java #1
base: master
Are you sure you want to change the base?
Conversation
this code is of bubble sort with the time analysis counting in nanoseconds. Hope it helps
@nik132-eng |
public static void main(String args[]) { | ||
long startTime = System.nanoTime(); | ||
|
||
List<Integer> list = Arrays.asList(44, 55, 99, 77, 88,6 , 66); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take input from user. You can copy code from other files.
System.out.println("Execution time in nanoseconds: " + timeElapsed); | ||
} | ||
|
||
private void sort_with_time(List<Integer> list, int n) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make this function static
System.out.println("Execution time in nanoseconds: " + timeElapsed); | ||
} | ||
|
||
private void sort_with_time(List<Integer> list, int n) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take input as array not list.
Do not take length of array as input.
This code is of bubble sort with the time analysis counting in nanoseconds. Hope it helps