Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

79
votes
7answers
7k views

Bubble Sort Homework

In class we are doing sorting algorithms and, although I understand them fine when talking about them and writing pseudocode, I am having problems writing actual code for them. This is my attempt in ...
27
votes
3answers
940 views

Optimal bubble sorting algorithm for an array of arrays of numbers

Fix positive integers n and k. Let A be an array of length n with A[i] an array of length k where every entry is n-i. For example, with n=5 and k=1, this is just [ [5] , [4] , [3] , [2] , [1] ] ...
18
votes
16answers
4k views

What is a bubble sort good for?

Do bubble sorts have any real world use? Every time I see one mentioned, it's always either: A sorting algorithm to learn with. An example of a sorting algorithm not to use.
11
votes
2answers
109 views

Sorting a linked list in Java

I have written a bubble sort algorithm to sort a linked list. I am a Java beginner and trying to learn data structures. I am confused why my second element is not sorted properly. EDIT class ...
11
votes
3answers
567 views

Why is C quicksort function much slower (tape comparisons, tape swapping) than bubble sort function?

I'm going to implement a toy tape "mainframe" for a students, showing the quickness of "quicksort" class functions (recursive or not, does not really matter, due to the slow hardware, and well known ...
9
votes
6answers
707 views

Various ways of implementing bubble sort?

How should I implement the classic bubble sort algorithm? I'd particularly like to see a C++ implementation, but any language (even pseudocode) would be helpful. P.S. Not a homework.
8
votes
1answer
155 views

Why Javascript implementation of Bubble sort much faster than others sorting algorithms?

I have done some research about Javascript sorting algorithms performance comparison, and found unexpected results. Bubble sort provided much better performance than others such as Shell sort, Quick ...
8
votes
14answers
951 views

Bubblesort over other sorting algorithms?

Why would you choose bubble sort over other sorting algorithms?
4
votes
1answer
371 views

C OpenMP parallel bubble sort

I have an implementation of parallel bubble sort algorithm(Odd-Even transposition sort) in C, using OpenMP. However, after I tested it it's slower than the serial version(by about 10%) although I have ...
4
votes
7answers
999 views

what's bubble sort good at? [closed]

Possible Duplicate: What is a bubble sort good for? I'am sure every algorithm has its advantage and disadvantage, so how about buble sort compared to other sorting algorithm? (ofcourse I ...
4
votes
3answers
202 views

Strange Bubble sort behaviour

Can anyone explain why this bubble sort function doesn't work and why I lose numbers in my output? I'm very new to C, so please forgive me if this is something very obvious I have missed. #include ...
3
votes
1answer
74 views

Bubble sort doesnt sort last number with this algorithm

I am having issues the last number in this code is not being sorted. // This is the more advanced optimzed version of bubble sort int modifiedBubbleSortArray(int array[]) ...
3
votes
2answers
228 views

Increasing stack not working

How do can i properly increase the stack available for a program using either Bloodshed Dev C++ or Code::Block? Im running simple bubble and quick sort that work, but when i changed the stack in ...
3
votes
4answers
2k views

Bubble sort algorithm implementations (Haskell vs. C)

I have written 2 implementation of bubble sort algorithm in C and Haskell. Haskell implementation: module Main where main = do contents <- readFile "./data" print "Data loaded. Sorting.." ...
2
votes
1answer
55 views

Bubble sort in NSMutableArray

here is my question: I have a plist with some objects in it. These objects have some keys like "age", "sex" ,"person" and etc. If values of these keys are suitable for my if statement, I add this ...
2
votes
8answers
139 views

How do I implement this bubble sort differently?

I'm looking to implement a bubble sort. I have the following code that I wrote, which uses a for loop inside of a do loop. How can I make this into a bubble sort that uses two for loops? Here's my ...
2
votes
3answers
96 views

Curious on bubblesort method

I created a simple bubblesorting script here that takes in arrays and sorts them, This is only a snippet of the code. But its the code that sorts it. I want to make it so Instead of making nine or so ...
2
votes
3answers
206 views

Recursive Bubble Sort in Java

I am trying to write a Recursive Bubble sort in Java and I'm getting an Index Out of Bounds Exception. What am I doing wrong and why am I getting this error? Here is my code: public static <T ...
2
votes
3answers
444 views

Bubblesort on generic list in C#

I'm working with a generic list in C#, but I have a problem when I try to sort the nodes using bubble sort method. namespace ConsoleApplication1 { public class GenericList { private class ...
2
votes
3answers
341 views

Which one is the real Bubble Sort, and which one is better?

I had an argument with a friend about the real bubble sort of the following two algorithms, and about which one is better, no mention which one is mine, I just want to hear your answers on these two ...
2
votes
2answers
518 views

How to bubble sort through a text file in Java

How do I do a bubble sort in java, The text file looks like this: aaa 2 bbb 3 ccc 1 What I need to do is to loop through it and display the highest score to the lowest. When I run the code ...
2
votes
2answers
2k views

C++ Bubble sorting a Doubly Linked List

I know bubble sort is probably not the fastest way to do this but its acceptable. i'm just having trouble with adjusting the algorithm to double link lists from arrays. My double linked lists have a ...
2
votes
2answers
470 views

JavaScript BubbleSort

Have a bubblesort routine similar the this. I need to make it more efficient by stopping the loop when the array is sorted or if the array is already sorted. function sortNumbers(listbox) { var x, ...
2
votes
3answers
630 views

Sorting 2D array of chars C++

I have a 2d array of chars where in each row I store a name... such as this: J O H N P E T E R S T E P H E N A R N O L D J A C K How should I go about sorting the array so that I end up with A R N ...
2
votes
2answers
2k views

How do you use a bubble sort with pointers in c++?

So here's what I have so far: void sortArray(int amountOfScores, int* testScores) { for(int i = 0; i < amountOfScores; i++) { for(int j = 0; j < amountOfScores-1; j++) { ...
2
votes
1answer
1k views

parallel Bubble sort …please HELP

i write a c++ code for Bubble sort algorithm and i dont know how to make it parallel using openmp so please help me ..... this is the code : #include "stdafx.h" #include ...
2
votes
7answers
2k views

What's the most elegant way to bubble-sort in C#?

Can this be cleaned up? using System; class AscendingBubbleSort { public static void Main() { int i = 0,j = 0,t = 0; int []c=new int[20]; for(i=0;i<20;i++) ...
1
vote
3answers
62 views

bubble sort in php

Hi i need to do a bubble sort algorithm in PHP. I want to know whether any one has any good examples, i can use? or an open source library which can do this. I have a few spaces in a set (array), i ...
1
vote
1answer
99 views

bubble sort linked list, swapping pointers. C

I'm trying to swap two pointers of a singly linked list using the bubble sort. I've made the compare function, and its working good. In the swap function, the swap is working good, I've managed to ...
1
vote
3answers
53 views

Error With Array Sorting with BubbleSort in Java

I am trying to create an array with 'total' amount of numbers between min and max. And then, sort them using bubble sort. When i execute, i get all zeros. Could someone find what is going wrong? A ...
1
vote
3answers
95 views

Optimizing a bubble sort in C that will decrease the number of swaps needed to sort a list of numbers in ascending order

To my understanding, the bubble sort (inefficient version) will do as follows: 2 3 8 6 23 14 16 1 123 90 (10 elements) Compare element [0] and element [1] If [0] is bigger than [1], then a swap ...
1
vote
2answers
74 views

Array diagonal neighbourhood analysis and sort

I've been battling with this for some time and seem to be getting nowhere. The set up is so; I have a 2D array. For this array I need to iterate through each value and return the diagonal neighbours ...
1
vote
4answers
150 views

What is the best way to sort a double linked list in C? [closed]

Possible Duplicate: Bubble sort double linked list in C? I was trying to bubble sort it but it's not working, can someone give me an example of sorting an double linked list ?
1
vote
5answers
64 views

Bubble sort algorithm JavaScript

Please can you tell me what is wrong to this implementation of bubble sort algorithm in JavaScript? for (var i=1; i<records.length; i++){ for (var j=records.length; j<1; j--){ ...
1
vote
1answer
104 views

Bubble Sorting Program, Works in DM compiler(on windows) & not on GCC(Ubuntu)

I made this bubble sort algorithm in C. Its working well in DM, but when executed in gcc, gives me incorrect output. #include <stdio.h> int i,j; void BubbleSort(int*a, int n) //to sort the ...
1
vote
3answers
135 views

How to refresh a C array after using assembly to sort

I have been working on a program that will do a bubble sort for n integers. I have hit a wall, as I do not know to refresh the array once my assembler operation are done. Any suggestions would be ...
1
vote
1answer
92 views

Calculating/displaying the minimum cost for robot (position) to move on 2D grid (array)

I am currently working on an assignment question that calculates the cost of movement for a robot (position x, y). We are given the dimensions of a 2D grid (2 dimension array) with several obstacles ...
1
vote
3answers
202 views

Erlang Bubble sort

I'm learning Erlang and decided to implement bubble sort in it, it took me some effort and in result i've succeded, but i see that my way of thinking is incorrect, is there more effecient way to ...
1
vote
3answers
249 views

How can i use Comparator to implement Bubble sort?

How can i implement Bubble sort by using Comparator? Thank you. This is how my comparator looks: class ColumnSorter implements Comparator { int colIndex; ColumnSorter(int colIndex) { ...
1
vote
2answers
201 views

Riddle: Spot the serious bug in this bubble sort implementation

(No, this isn't a homework assignment, I just found the bug and thought it might be useful to share it here) import java.util.List; public class BubbleSorter { public <T extends ...
1
vote
4answers
771 views

bubblesort from highest to lowest number in java

I'm looking for a bubblesort code in java that is opposite of the usual thing that I'm seeing when I search the internet. I don't really understand the code below, all I know is that it sorts a bunch ...
1
vote
5answers
210 views

Sorting in arrays

While sorting an array for ex: A[5]={1,4,5,3,2} the output must be 1,2,3,4,5 in ascending order. in using the concept of bubble sorting my output is 0,1,2,3,4 what would be the problem in my code ...
1
vote
3answers
191 views

J: Self-reference in bubble sort tacit implementation

Since I'm beginner in J I've decided to solve a simple task using this language, in particular implementing the bubblesort algorithm. I know it's not idiomatically to solve such kind of problem in ...
1
vote
3answers
1k views

C++ sort array of char pointers

Can you tell me what's wrong with my method? I ends up putting the same thing everywhre and it's actually not sorting. void sortArrays(){ int i, j; for(i=0; i<counter; i++){ ...
1
vote
4answers
2k views

Bubble-Sort with 2D Array

Howdy, I do know how to implement a simple bubble-sort for 1dimensional array. But with 2dimensional or multidimensional, that's where I have my problems. So far I've been using this to sort ...
0
votes
2answers
81 views

How do i do a bubble sort with a double linked list?

I have a bunch of data in a double linked list, and i need to bubble sort the numerical data from this linked list this is what i've been using in the past: public void bubbleSort(int a[], int n) { ...
0
votes
4answers
80 views

Bubble Sort in a structed list that are filled by a csv file

I load a .csv file that fill my struct typedef struct list TList; struct list { int index; char data; TList* prox; }; How can I do a bubble sort in my list ? I ...
0
votes
1answer
61 views

Bubble sort error

#!user/bin/python from random import * import time def bubble(lst): counter = 0 n = len(lst) while n > 0: temp = 0 for i in range(1,n-1): if ...
0
votes
2answers
78 views

mergesort - with an insignificant change throws SystemInvalidOperationException

A very strange thing occured in my program. Here is the simplified code. class Program { static void Main(string[] args) { ArrayList numbers = new ArrayList(); numbers.Add(1); ...
0
votes
0answers
98 views

Desk Checking an Algorithm [closed]

Possible Duplicate: Desk Check Binary Search I am here about a query that I am facing. I was wondering on how I would go about desk checking the following code. Data set 0 1 2 3 ...

1 2