Tagged Questions
4
votes
4answers
92 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 ...
2
votes
7answers
205 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
390 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
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
698 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
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
3answers
76 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
344 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
6answers
282 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
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 ...
-7
votes
2answers
153 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.