Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

nik132-eng
Copy link

This code is of bubble sort with the time analysis counting in nanoseconds. Hope it helps

this code is of bubble sort with the time analysis counting in nanoseconds. Hope it helps
@Shrirang97
Copy link
Owner

@nik132-eng
Please put reviewer after raising PR.

public static void main(String args[]) {
long startTime = System.nanoTime();

List<Integer> list = Arrays.asList(44, 55, 99, 77, 88,6 , 66);
Copy link
Owner

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) {
Copy link
Owner

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) {
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants