The qsort tag has no wiki summary.
2
votes
3answers
42 views
C qsort() with dynamic n by 2 multi-dimensional array
First, I defined a dynamic array with 2 columns and 10 row. The integer number is set to 10 here just for example.
int** array;
int number = 10;
array = malloc(number * sizeof(int*));
for (i = 0; i ...
0
votes
0answers
7 views
luajit qsort callback example memory leak
I have the following qsort example to try out callbacks in luajit. However it has a memory leak which is not obvious to me.
Can somebody give me some hints on how to create a proper callback example?
...
4
votes
2answers
79 views
Is there a function similar to qsort() to be used in kernel space?
I'm writing a loadable kernel module and I need to use the function qsort() which apparently cannot be used in kernel space.
Is there a function that I can use that has a similar functionality ?
...
0
votes
1answer
56 views
what happened when using qsort function?
I'm trying to sort the struct node by variable a, but the result turns out to be wrong.
My result:
{5, 4}, {6, 2}, {7, 3}, {4, 1}, {3, 7}, {1, 3}, {0, 0},
My code:
#include <stdio.h>
...
0
votes
1answer
67 views
Qsort dilemma in C++
Vector<Medicine*>* Controller::sortByStockAsc(){
Vector<Medicine*>* all =repo->getAll();
qsort(all, all->getNrMed(),sizeof(Medicine*), (comparefunction) compareNA);
...
0
votes
1answer
50 views
Sorting structs in C with qsort
I have a struct in C like this:
typedef struct proces {
char ime[60];
char pid[60];
char ppid[60];
char stanje;
int stdat;
char niti[60];
char poraba[60];
} proces ;
I ...
1
vote
1answer
72 views
Using a tokenizer in C++ from a file?
I am working on an assignment that requires me to read in several lines of text from a file, and at the end use qsort to sort the words used alphabetically and display a count of how many times each ...
-1
votes
1answer
34 views
Sorting the output of a function to display from High to Low
I have a struct, defined as this:
typedef struct structure
{
char names[20];
int scores[4];
float average;
char letter;
} stuff;
And from that struct created this array:
stuff everything[13];
...
0
votes
0answers
42 views
Partition section of qsort
So im trying to partition this array of integers for a qsort function, im having difficulty trying to loop through the array, im not sure what to put for the while loop to keep the process going, I ...
3
votes
2answers
115 views
qsort structure array deletes everything
So I am having trouble using qsort to sort an array of structures.
I used this link as an example: http://support.microsoft.com/kb/73853
When I run the program it gives me blanks for the names ...
1
vote
2answers
100 views
qsort in C++ for string arrays?
I'm working on a program that takes a list of words entered by the user, ignores the cases (upper and lower) and then sorts them using the function qsort. I'm having an issue with qsort in that I ...
0
votes
3answers
90 views
qsort of multidimensional array in c leading to segfault
I am trying to sort a 2D array of doubles using qsort() in C. The arrays contain 3D point data, which is read in from a file using fscanf. My programming skills are rather limited, but I have really ...
5
votes
2answers
57 views
Qsort and issues with it
The following is my code and Qsort produces strange result:
#include <stdio.h>
#include <stdlib.h>
char values[] = { 0x02,0x04,0x0b,0x16,0x24,0x30,0x48,0x6c};
int compare (const void * ...
1
vote
1answer
94 views
Malloc example crashing with qsort?
Hey I found an example of using malloc with an array of structs that fits what I'm trying to do quite well, but when I go to combine it with qsort which I need to sort by the "number" value of struct ...
1
vote
1answer
20 views
How correctly sort array by qsort?
I have this code for sort array polsum:
int comp (const void * a, const void * b){
double aa = *(double*)a, bb = *(double*)b;
if (aa < bb) return -1;
if (aa > bb) return 1;
...
0
votes
2answers
69 views
compare function in inbuilt qsort function
I am trying to use the inbuilt qsort function in C to sort a structure
typedef struct abc{
long long int fir;
long long int sec;
}abc;
In the compare function I used the below code so that if ...
0
votes
1answer
52 views
soritng each string then set of string using qsort [duplicate]
The following code is to sort each string in a set(sort its characters), then sort all the strings in the set. But it is giving me segmentation fault..
#include<stdio.h>
...
1
vote
2answers
161 views
using vectors with qsort()
I am working on a homework assignment involving vectors using qsort(). I am able to get the code to compile, but I am receiving an error saying Expression: vector subscript is out of range and ...
-7
votes
1answer
153 views
C++: How-to sort 2-d array with qsort? [closed]
Example: Result:
[9,1] [0,5]
[5,2] [2,4]
[6,3] [5,2]
[2,4] [6,3]
[0,5] [9,1]
I know that the meaning lies in the comparison function. How to sort in ascending ...
0
votes
1answer
93 views
Qsort parallel arrays using pointers
I am trying to do a parallel qsort in C++ . I have numeric array which is sorting fine and I want a parallel 2 dimensional character array to move up or down with its numbers. This is what I have so ...
0
votes
1answer
52 views
qsort() of one array with respect to another array
I want to use qsort() to sort array a with respect to b. Can u give me the fuction?
a={0,1,2,3,4}
b={3,4,5,1,2}
answer must be {3,4,0,1,2}
Please give me the code of function.
like :
int compare ...
1
vote
3answers
266 views
Sort these elements in descending order?
Experimenting with qsort and it runs perfectly for me. I use function pointers throughout the program and some other features I am not used to (i.e. such as void pointers).
I want the elements ...
3
votes
2answers
278 views
How can I qsort a two dimension array by a specific cell?
I have got a 2d array which and I would like to quicksort it with the given qsort() function in C++:
unsigned work[N][3];
I would like to sort the "work" array by the third index... so if work[i] ...
2
votes
1answer
93 views
Why comparator in qsort has to be in this way?
According to the C reference the qsort function provided in the standard library has the form
void
qsort ( void * base, size_t num, size_t size, int ( * compar ) ( const void *, const void * ) ...
3
votes
3answers
423 views
Qsort Comparison Function
I am a beginner to C and I am trying to understand the comparison function needed for the qsort function.
Part One: Syntax
A simple suggested use is this (I have included some main() code to print ...
2
votes
0answers
112 views
No qsort_r for Android (or how to disable force Thumb to use CLZ in Android ARM code)
What I want to do (high-level): use qsort_r on Android.
There is no default implementation. So I've grabbed one from BSD. Unfortunately it needs fls functions which is also unavailable on Android. So ...
4
votes
1answer
219 views
qsort_b and qsort
Writing a program that demonstrate different sorting algorithm in C++ on Mac. I found two quicksort implementation, qsort and qsort_b.
The first one is of course the old-fashioned, seen-everywhere ...
0
votes
1answer
61 views
string_comparator in C
Okay so I need to several quite long strings in C. So I say to myself "why, you'd better use that handy dandy qsort function! Better write yourself a string_comparator for it!"
So of course I do and ...
0
votes
1answer
116 views
C - Sorting Array of Structs by Char Array Field
I am currently looking into sorting a struct array by a particular field within the structs using the qsort function, but I could use a starting point.
Here is my current struct array:
/* database ...
0
votes
1answer
141 views
The final value of my database corrupts after quick sort [closed]
So I managed to write a program to store OpAmp data in a small database (10 pieces of data) and everything seems to be fine until I perform a quick sort, sorting by Slew Rate in ascending order. When ...
-1
votes
2answers
212 views
Segmentation fault (core dumped) in c [closed]
I am using qsort function in c..its a in built function...it works well for strings having length less than 7..on strings whose length > 7, it gives "Segmentation fault (core dumped)"
#include ...
1
vote
4answers
89 views
Calling qsort on subset of array
I have been looking for a way of sorting subset of arrays in C without moving the elements to a temporary array, and copying them back. I might have a bad understanding about qsort, but I think the ...
1
vote
2answers
387 views
Sorting a 2 dimensional array of strings by a specific field
Given a two dimensional array decalred below:
char * Arr[4] =
{
{"124 -346 DATA...."},
{"39479 -32 MOREDATA...."},
{"12 -1 DATA2...."},
{"100 -45 DATA4...."}
};
i'm trying to use ...
-2
votes
3answers
129 views
Sort array in c
I have a array of structs. lets call it structsarray
And i have a array of ints where the ints are index's of the stuct. Lets call it indexarray
I would like to sort indexarray but i want to compare ...
0
votes
0answers
13 views
Passing member function to another member function
Good day to you all,
I'm having a trouble passing a member function to another member function:
Here is a piece of my code:
int compare(const void* elem1, const void* elem2)
{
CRestaurant ...
0
votes
1answer
93 views
Sort array of variable length data blocks in C++
I have an array of variable length data structures, all of them are of the same size, but the exactly size of these structures are unknown until runtime.
How to sort them with library functions like ...
1
vote
2answers
123 views
Sort Addresses in C Program Using Qsort
I am trying to sort an array of pointers by the memory address:
#include <stdio.h>
#include <stdlib.h>
typedef struct flist {
int size;
struct flist *blink;
struct flist ...
1
vote
3answers
135 views
qsort seems to change values
I'm stuck with following problem:
int sort_compare(const void *x, const void *y) {
const int *xi = *(const int **) x;
const int *yi = *(const int **) y;
for (int i = 0; i < ...
0
votes
1answer
109 views
qsort for structures c
Below is my code:
I cant seem to use qsort effectively... It turns my array into 0's after they are populated with names and start times... Is it a problem with my qsort call? or the qsort itself.
...
2
votes
2answers
217 views
qsort dynamically created array in c
Hey guys (be forewarned that this question makes me feel n00b so I probably am),
I'm able to dynamically create an array and I'm able to use qsort effectively for a statically created array but am ...
0
votes
1answer
106 views
malloc seg fault
I wrote a function to allocate memory for 2 double variables. It works when the required memory size is small, but causes seg fault when the required memory grows relatively big. Is there any error or ...
1
vote
3answers
136 views
how to put char * into array so that I can use it in qsort, and then move on to the next line
I have lineget function that returns char *(it detects '\n') and NULL on EOF.
In main() I'm trying to recognize particular words from that line.
I used strtok:
int main(int argc, char **argv)
{
...
0
votes
0answers
37 views
why the complexity of qsort with duplicate keys becomes N^2?
With the original qsort algorithm, when there is a large number of duplicate keys, the complexity will become N^2, so 3-way qsort was designed to deal with this problem.
Any body can explain with ...
0
votes
2answers
1k views
Sorting an array of strings in C
I have an assignment I've been working on for a few hours now, and I can't seem to get it quite right. The assignment is to take a random number of names (from stdin), sort them, and then output them ...
2
votes
6answers
738 views
How to compare C++ string using qsort in c?
I tried to learn the qsort function of the c-library stdlib. This is provided even in c++. But i dont understand how to use them for sorting c++ strings. I am not sure of what the parameters should be ...
3
votes
1answer
1k views
Trying to use qsort with vector
I'm trying to learn c++ and was trying using sort and qsort. sort() works just fine
but qsort doesn't, I don't know why, so can you help me please
this is the code I was trying to compile
...
2
votes
3answers
138 views
qsort for structure array
I try to sort a struct below, given an intention to sort their error rate, while retaining the information of sid and did. While there is no compilation error, I get a seg fault in runtime. I wonder ...
0
votes
1answer
229 views
Why this code using qsort function doesn't work in C?
The sorting part:
order = (struct order_s **) calloc(pm->len - q, sizeof(struct order_s*));
for (i = 0; i < window_pos; ++i) {
order[i] = (struct order_s *) ...
1
vote
1answer
88 views
“programming pearls”: Strings of Pearls
In column 15.3, the author introduced how to generate text randomly from an input document. The author also gave the source code.
qsort(word, nword, sizeof(word[0]), sortcmp);
int sortcmp(char **p, ...
0
votes
0answers
51 views
linkage conventions, how to declare qsort
I would like to ask how to declare qsort function from stdlib.h in a different compilation unit and avoid warning about inconsistent dll linkage.
typedef int (*FT)(const void*, const void*); //FT has ...

