Tagged Questions

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
7answers
208 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
214 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 }; ...
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
165 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
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
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
42 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
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
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
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
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? ...