The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
38 views

Bubble Sort Time C program

The test is to create an array of size 10000. Initialize it with the values 10000 down to 1 and then use a bubble sort to reverse the order.As a bubble sort is one of the worst possible sorts, this ...
0
votes
1answer
44 views

Bubble Sort function in C

I'm beginning C language lessons, specifically functions. My task is to sort the structure of arrays by numerical value, in this case that value is the variable 'age.' I'm unsure how I should ...
0
votes
0answers
51 views

Bubble sort in CUDA

So I know that parallel bubble sort isn't exactly popular, but I wanted to try a somewhat different way of doing it and want to know if there is a reason why it shouldn't work. What I'm trying to ...
0
votes
1answer
13 views

How to analyse complexity of the given optimized bubble sort?

This is a pseudo code of optimized bubble sort algorithm. I have tried to analyze its time complexity, but i am not sure what is the cost of line 4 (if A[i-1] > A[i]). Is the answer ...
0
votes
2answers
60 views

C : Array of strings - Can input only n-1 strings for an input size of n

I have to sort strings in a lexicographical order using the Bubble Sort technique without using any library functions. I have written the following code which is working fine in sorting the strings. ...
1
vote
1answer
83 views

sorting a file of records error

I need to sort a file of records but I am not quite sure of how to do it. I have a file of records and I have attempted to sort them using a simple bubble sort but I am stuck and need some help. ...
2
votes
1answer
34 views

Modifying BubbleSort Code

I am trying to study for a test and one of the study questions I can't get deals with BubbleSort. The question is: Modify the BubbleSort code below to short circuit its execution. By that I mean, ...
0
votes
2answers
47 views

Linked list Bubblesort is not quite right

I'm working on a bubblesort algorithm for a linked list. It's moving the data about, but it's not quite sorting the data properly. For now I'm only worried about linked lists of ints. Where is the ...
-3
votes
1answer
47 views

Broken Binary search and Bubble sort

I really need some help with this problem, this program we are supposed to debug has some errors in it that I cannot find. The program has an array of names and is supposed to bubble sort the names ...
0
votes
2answers
83 views

Need to sort a list of random numbers in a stored procedure

I am in need of help in creating a stored procedure that allows a user to input a list of random numbers and then sort them using the bubble sort algorithm. I am very new to programming and as well as ...
1
vote
2answers
40 views

Java: Bubble sort somehow not working

Ok, this is really embarrassing, but I have a bubble sort that doesn't seem to fully sort the data each time. I have gone over it even on paper, but I can't find any problems with it. (The below is ...
0
votes
3answers
62 views

How to make Bubble Sort in Java to output the sorted numbers?

This is my code for the Bubble Sort. I cannot get the actual sorted values to output. The program reads the inputted numbers, but does not print it sorted. I'm not sure what I have to do to make them ...
-4
votes
2answers
82 views

How to Perform Bubble Sort using Pointers [closed]

I have written this code for Bubble Sort using Pointers, but I am getting errors like LVALUE required. Here is my code. Please fix this code. I am getting error basically in swapping syntax. Please ...
2
votes
2answers
186 views

Optimized Bubble Sort (Java)

I would like to know how else I can optimize bubble sort so that it overlooks elements that have already been sorted, even after the first pass. Eg. [4, 2, 3, 1, 5, 6] --> [2, 3, 1, **4, 5, 6**] ...
0
votes
0answers
46 views

How to sort and display values in an array organized by age and batting average

I'm trying to make a program that makes the user enter info (name, age, position & batting average) for 10 players into arrays. After the records have been entered, the program should check info ...
0
votes
1answer
86 views

How to add bubblesort function to this current random number generator?

Need to bubble sort 100 random numbers with range from -100 to 100 from high to low while maintaining the current decimal place precision. I have a bubble sort function but am not sure how to call it ...
1
vote
5answers
54 views

Timing a bubble sort execution

I want to be able to see how long it took for a bubble sort to sort all the element in the array. How do I measure the time? public class Bubble { static int[] nums = {5, 4, 3, 2, 1}; ...
-2
votes
0answers
37 views

How do i get my swap count to be a cumulative number in Bubble Sort

Here is my code for the bubble sort public class test { public static void main(String[] args){ System.out.println("Original order of numbers:"); int nums[] = {26, 45, 56, 12, ...
0
votes
1answer
47 views

bubble sort implementation on linked list [duplicate]

I got an error in LinkList.java, in "curr.names.length()-1". The .length comes as an error. How do I fix this? Still new here and I don't really understand Java well. Just thought I'd give it a try. ...
0
votes
4answers
103 views

bubble sort implementation on linked lists

I have to implement a BubbleSort algorithm on a Linked List instead of an array. I'm new to java so I don't really know how to put it in code. But I gave it a try and here's what I got: ...
1
vote
1answer
54 views

Bubble Sort in Double Linked List - Null Pointer Error

protected void sortHorseList(int iHorseCount) { int i = 0; Horsie currentNode = head; Horsie auxNode = new Horsie(); boolean foundChange = true; while(foundChange) { ...
1
vote
1answer
70 views

Trying to Understand whats wrong with my bubble Sort Method

Im Not Sure why my code wont work.All of them print the same values instead of sorting them. The output doesnt change and the arrays seems unsorted still.Any Ideas how i can fix this?I would like to ...
0
votes
1answer
42 views

Bubble sort not working

This is my bubble sort in python put I cannot seem to find the problem. I am looking to start creating more complex sorting algorithms, but I must first understand why my bubble sort is not ...
0
votes
3answers
113 views

There is another way to optimize this bubble-sort?

I have this code which sort a numeric array using bubble sort algorithm. var a = [34, 203, 3, 746, 200, 984, 198, 764, 9]; function bubbleSort(a) { var swapped; do { swapped = false; ...
0
votes
3answers
359 views

Python Bubble sort

Hey so the code works perfectly thank you very much! i just have one more question. I want to have an arrow displayed in between the two coulmns. i created this code but i dont really know how to ...
0
votes
1answer
105 views

Java bubble sort doubly linked list [closed]

Good day to all. I want to sort my doubly linked list using bubble sort. I have this code being compiled (some does not belong to me) but I think I'm missing something. It does not sort at all. Any ...
1
vote
1answer
67 views

Syntax Error in C code

void bubble (char cList[] ,int size) { // This is the line with the error int swapped; int p; for (p = 1; p < size ; p++) { swapped = 0; /*this is to check if the array is already sorted*/ ...
0
votes
4answers
80 views

Bubble sort function for strings causes program crashes [closed]

I don't know what's happening, every time I enter the second string in the code below, an error box pops up. I am using Codeblocks as compiler. Is it because I use pointer to pointer? ...
0
votes
2answers
112 views

Binary search with bubble sort

Is it possible to have a binary search that uses a bubble sort to sort it? This is my bubble sort and binary search. How do I combine them? int Search_for_Client (int cList[], int low, int high, ...
0
votes
1answer
75 views

Bubblesort listbox Am i missing something?

I want to sort an array[10] with bubblesort and place the unsorted/sorted items in an listbox. But the array isn't sorted and gives me always the same array of numbers back. private void ...
0
votes
0answers
74 views

Bubble Sort Reading an Array of Random Numbers in Java

My problem is I have a Random Number Generator that puts random numbers into an Array. I need my Bubble sort to read that and then print it and I just can't figure it out. Here is my Main: ...
1
vote
1answer
105 views

Haskell Bubble Sort on a three part Tuple

I am trying to implement bubble sort to sort my list by priority. For example, the list is of the following format with the 3rd element being priority: [("Ted", 100, 3), ("Boris", 100, 1), ("Sam", ...
3
votes
3answers
133 views

Sorting algorithm efficiency/performance

I'm a beginner in programming and was just playing with sorting and made this algorithm. It is similar to bubble, but it compares not the adjacent pairs but pairs like: first and second, first and ...
2
votes
1answer
114 views

Pypy (python) optimization

I'm looking into replacing some C code with python code and using pypy as the interpreter. The code does a lot of list/dictionary operations. Therefore to get a vague idea of the performance of pypy ...
0
votes
1answer
67 views

Implementing BubbleSort at the end of QuickSort

I finally got my bubblesort and quicksort working but am curious as to how to change my code so that when I reach the last 10 elements being sorted in my quicksort I instead change to bubblesort for ...
0
votes
1answer
55 views

Alphabetic order of an array of a Class

I have an array of Class Customer. I would like to alphabetically re-order the elements in the array of Class Customer based on a field called name. Here is the code I am using: int j; ...
0
votes
1answer
198 views

Bubblesort implementation using linked-list only partially works

I am trying to use bubble sort to sort a list of items. I am aware that this is not the most effective method of sorting; however, I require this method to work before moving on to better things. My ...
0
votes
0answers
206 views

SelectionSort and BubbleSort - how to count number of comparisons and number swapping?

First of all, I have seen a similar question relating to C++, but I didn't quite understand it - plus my question is about Java. Basically I have coded two methods that can use SelectionSort and ...
1
vote
2answers
183 views

Bubble Sort Optimization C++

I was just practising a little bit and tried to sort an array with the bubble sort algorithm. Compiler didn't give me any warnings nor errors and it worked well! First you type 10 times a number and ...
0
votes
3answers
323 views

VBA Bubble Sort Algorithm Slow

I am surprised at how slow this bubble sort algorithm is using VBA. So my question is am I doing something wrong/inefficient, or is this just the best VBA and bubble sort will do? For instance, could ...
1
vote
2answers
68 views

I get different running times for bubblesort in Java

I have created a new bubble sort project and i want to know how much time it takes. Hence, I have added a getTime() method, which returns nanotime. I have also created an array with 9 static values. ...
0
votes
2answers
137 views

How to bubble sort array of pointers to the another array of chars

I have one array containing chars from the input and the other array containing pointers to the corresponding chars in the first array. This part went good. But then I would like to bubble sort the ...
2
votes
1answer
123 views

Animating Graphical Sort

I am working on an assignment called "Graphical Sort", which is basically animating sort algorithm graphically. I just need help on animating the sorting process. I tried using Thread, but the ...
1
vote
1answer
84 views

asymptotic-complexit - Calculate steps of primitive operations

I've some difficulties understanding how i should calculate the primitive operations of the following algorithm. I know that the calculations of the steps is somehow like this: (1) = 1 step: ...
7
votes
4answers
453 views

given an array of integers in random order you have to find the minimum number of swaps to convert it to cyclic sorted array

if an array is given in random order , you have to output the minimum number of swaps required to convert into cyclic sorted array. e.g. array given is 3 5 4 2 1 so the first swap will be 5<-->4 ...
1
vote
2answers
123 views

Use of second for loop in Bubble sort [closed]

Can someone please explain the exact purpose of the second for loop in the following bubble sort? I understand the first loop is looking at the 'i'th integer of the array, but what exactly is the ...
0
votes
1answer
469 views

Bubble sort worst case, best case and average case complexity

What is the (a) worst case, (b) best case, and (c) average case complexity of the following function which does bubble sorting for i=1 to n-1 do for j=i to n-1 do if x[j]>x[j+1] then ...
1
vote
1answer
160 views

Bubble Sort C - Linked List

So here is the problem I am having with my small bubble sort function. I am able to sort the value however I always get a cutoff after 3 nodes. An example would be: Sort the following: 3 2 54 5 4 I ...
0
votes
0answers
38 views

aggregate assignment with structs for a bubble sort

Hey guys i am trying to do a bubble sort for an array of struct. For some reason my code isn't working. I think its the aggregate assignment of the struct in the swap() function. Let me know if you ...
0
votes
3answers
382 views

Bubble sort on double linked list

Been at this for a few hours trying to get an implementation of bubble sort to work on a double linked list. My code seems to work for one pass but then finishes prematurely without completing the ...

1 2 3 4 5