Tagged Questions
1
vote
1answer
125 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 ...
0
votes
2answers
74 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
2answers
103 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
169 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
119 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 ...
-7
votes
2answers
214 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.