Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
20answers
2k views

Insertion Sort Code Challenge

My task for you this time is to implement an insertion sort algorithm. Sure, everyone and his dog can do it; but how easy is it to do in the fewest characters? One must take an array (or suitable ...
5
votes
1answer
1k views

Sort an array via x86 Assembly (embedded in C++)?? Possible?

I am playing around with x86 assembly for the first time and I can't figure out how to sort an array (via insertion sort).. I understand the algorithm, but assembly is confusing me as I primarily use ...
4
votes
4answers
94 views

Structure with extremely fast insertion time

I'm looking for an ordered data structure which allows very fast insertion. That's the only property required. Data will only be accessed and deleted from the top element. To be more precised, i need ...
4
votes
5answers
195 views

Is this equivalent to insertion sort?

Say we have a 0-indexed sequence S, take S[0] and insert it in a place in S where the next value is higher than S[0] and the previous value is lower than S[0]. Formally, S[i] should be placed in such ...
3
votes
3answers
102 views

Why is insertion sort always beating merge sort in this implementation?

I don't understand: why is my insertion sort implementation beating merge sort every time, for any size of n? public List<Int32> InsertionSort(List<Int32> elements, Boolean ascending ...
2
votes
4answers
99 views

What means ';' inside of for statement?

I'm trying to understand the follow code below: /** * Simple insertion sort. * @param a an array of Comparable items. */ public static void insertionSort( Comparable [ ] a ) { for( ...
2
votes
7answers
207 views

Trying to understand insertion sort algorithm

I'm reading some books on Python, data structures, and analysis and design of algorithms. I want to really understand the in's and out's of coding, and become an efficient programmer. It's difficult ...
2
votes
4answers
213 views

Can't get insertion sort from introduction to algorithms 3rd ed. right. Where is my thinking mistake?

I am working my way through the book Introduction to Algorithms, 3rd edition. One of the first things explained is the insertion sort. On page 18 there is some pseudo code: A = { 5, 2, 4, 6, 1, 3 }; ...
2
votes
4answers
392 views

Java - Implementing sorting algorithms the 'right' way

I'm currently playing with implementing various sorting algorithms in Java, mostly for fun, but I'm struggling with how to do it 'right'. That is, I want the user to be able to call the sorting ...
1
vote
3answers
116 views

Quicksort/Insertion Sort combo slower than just Quicksort?

I run Quicksort 10 times, and get the average mean time. I do the same thing for Qicksort/Insertion sort combination, and it seems to be slower than just quicksort. Here's the part of the code where ...
1
vote
4answers
164 views

Why is Insertion sort better than Quick sort for small list of elements?

Isnt Insertion sort O(n^2) > Quick sort O(nlogn)...so for a small n, wont the relation be the same?
1
vote
2answers
138 views

Best case , Worst case , Random data input for insertion sort algorithm?

This is the code I wrote for inputting random numbers initially and then sorting them with the insertion sort method. #include<iostream> #include <cstdlib> ...
1
vote
2answers
275 views

Sorting an array in openmp

I have an array of 100 elements that needs to be sorted with insertion sort using OpenMP. When I parallelize my sort it does not give correct values. Can some one help me void insertionSort(int a[]) ...
1
vote
2answers
54 views

Need Help Studying Running Times

At the moment, I'm studying for a final exam for a Computer Science course. One of the questions that will be asked is most likely a question on how to combine running times, so I'll give an example. ...
1
vote
1answer
123 views

Is there any problem with this implementation of Insertion sort algorithm?

In the web I mostly find this implementation: void insertSort(int a[], int length) { int i, j, value; int k=0; for(i = 1; i < length; i++) { value ...
1
vote
2answers
330 views

C++ vector insertion sort algorithm method - pass vector into method

Ive look everywhere and whatever algorithm I find (if any lol) for insertion sort on a vector in c++, it wont work so im assuming it has something to do with my code. Can anyone help me find a way I ...
1
vote
1answer
1k views

Insertion Sort on an array of strings in C#

If I have an array of strings, such as string[] names = {"John Doe", "Doe John", "Another Name", "Name Another"}; How do I sort this array, using insertion sort? Wikipedia has some examples: ...
1
vote
2answers
649 views

Double Linked List Insertion Sorting Bug

I have implemented an insertion sort in a double link list (highest to lowest) from a file of 10,000 ints, and output to file in reverse order. To my knowledge I have implemented such a program, ...
1
vote
1answer
699 views

InsertionSort vs. InsertionSort vs. BinaryInsertionSort

I have a couple of questions concerning different implementations of insertion sort. Implementation 1: public static void insertionSort(int[] a) { for (int i = 1; i < a.length; ++i) { ...
0
votes
2answers
34 views

insertion sort in Introduction to Algorithm

in an Introduction to Algorithm 2nd edition, I found insertion sort pseudo code INSERTION-SORT(A) 1 for j <- 2 to length[A] 2 do key <- A[j] 3 //Insert A[j] into the sorted ...
0
votes
5answers
76 views

insertion sort algorithm flaw in java code

So I am going through some of the common sorting algorithms and have written an this: code: public void insertionSort(){ int key; int i; for ( int j = 0; j < this.a.length; j++ ...
0
votes
0answers
41 views

Insertion Algorithm VB.NET

I have a problem with this case to Insert a number into a list of array. Let me just straight to the case. I'm not post any code in here because I believe that my code wasn't working as well as I ...
0
votes
3answers
80 views

How to find out the largest element number(array size), let insertion sort beat Merge sort?

from wiki page of insertion sort: Some divide-and-conquer algorithms such as quicksort and mergesort sort by recursively dividing the list into smaller sublists which are then sorted. A useful ...
0
votes
1answer
25 views

Ordered insertion working sporadically with primitive types & strings

For an assignment, we've been asked to implement both ordered and unordered versions of LinkedLists as Bags in Java. The ordered versions will simply extend the unordered implmentations while ...
0
votes
1answer
60 views

link list insertion sort and reducing polynomials c++

I am writing this program dealing with polynomials. I am having trouble with the last part of my assignment. I need to sort the polynomials by degrees, then be able to reduce the polynomial if there ...
0
votes
2answers
73 views

Error with c insertion sort

I am making a c insertion sort and it works fine except that after the sort the first number is always a weird negative number and the program errors out. #include <stdio.h> #include ...
0
votes
0answers
18 views

How to run this mergesort cutting to insertion sort

Below is the code for my mergesort that is supposed to cut to an insertion sort at a point of my choosing. I'm having some problems getting it to actually run. I know I'm going to have to put ...
0
votes
2answers
145 views

how to insert into arraylist using a scanner?

I'm having some problems trying to figure out how to insert an integer using a scanner into an ArrayList. I'm not that great (actually not even really good) at java but I'm just trying to figure some ...
0
votes
1answer
43 views

Heapsort swap using Insertion Sort?

Is it possible to use insertion sort in a heapsort to replace its swap or exchange method? Typically swap requres 3 steps at minimum: temp = a a = b b = temp A friend of mine said that it's ...
0
votes
2answers
101 views

Please help me debug my Insertion Sort Program

I can't figure out what is going wrong with it. If input: 4,56,5,2 then output shown is: 2,4,0,1304. If input: 27,54,43,26,2 then output shown is: 2,26,0,1304,0 If input: 34,87,54,4,34 then ...
0
votes
2answers
284 views

Insertion sort - pseudocode question

I am reading Introduction To Algorithms book and the pseudo code is INSERTION-SORT(A) 1 for j ← 2 to length[A] 2 do key ← A[j] 3 ▹ Insert A[j] into the sorted sequence A[1 j - 1]. 4 i ← j ...
0
votes
1answer
345 views

Insertion Sort / Heap Sort time complexity

Assume you have to sort an array with n = 1,000,000 elements. How long would insert sort and heapsort roughly need assuming each basic step takes one milli-second? I know that insert sort takes n^2 ...
0
votes
4answers
281 views

Inserting into a sorted array of structs in C++

I have to implement a vector using an array in C++ that is used to count the number of unique words from the input. It reads the input and then adds to the words to a struct which contains its count ...
0
votes
2answers
640 views

simple insertion sort on a singly linked list c++

For now, Im not worried about efficiency and I am just learning. I was wondering if anyone could help me out with learning a simple insertion sort for a singly linked list. This is for my homework so ...
0
votes
6answers
285 views

insertion sort get indices?

I use the following algorithm for insertion sort: def insertionSort(A): indices = [z for z in xrange(len(A))] for j in range(1, len(A)): key = A[j] i = j-1 while ...
0
votes
1answer
115 views

How can this insertion sort routine be improved?

This is my implementation of the insertion sort as described in that Cormen, Leiserson, Rivest book. The only difference is that I'm using an inner for loop instead of a while loop. I feel it is a bit ...
0
votes
2answers
134 views

Running times for sorting methods over multple arrays

I have various sorting methods that are all sorting the same 100,000 random number array. I'm using the following method to find the runtimes of each long insertionStart = ...
0
votes
2answers
402 views

Needed help understanding insertion sort

In this code how does this work (java): /** Move A[A.length-1] to the first position, k, in A such that there * are no smaller elements after it, moving all elements * A[k .. A.length-2] over to ...
0
votes
2answers
142 views

Inserting items in a list that is frequently insertion sorted

I have a list that is frequently insertion sorted. Is there a good position (other than the end) for adding to this list to minimize the work that the insertion sort has to do?
0
votes
2answers
167 views

How can i perform an insertion sort but check a property of the element in the array not just the element?

Sorry, I'm sure this is simple but I'm tired and can't figure it out. I have an array of elements, each element is in fact a particle which is a data structure (a struct in c) containing, among other ...
-1
votes
1answer
108 views

insertion sort in c programming [closed]

In insertion sort, how can we insert a new integer into an array of integers? The memory for the array will be allocated during compilation,so we cannot increase the size of array,Even if we ...
-1
votes
2answers
185 views

Is this an insertion sort? [closed]

I am reading "Introduction to Algorithms" and read about the insertion sort. I tried to implement it myself without first reading their solution. Here is my solution, is this insertion sort? ...
-7
votes
2answers
156 views

Insertion sort linked list C [closed]

Having troubles understanding insertion sort, anyone have any good code examples or websites showing algorithms? Can't find any good examples from google.