Tagged Questions
The qsort tag has no wiki summary.
6
votes
6answers
194 views
What does this C syntax mean?
This is from a 'magic' array library that I'm using.
void
sort(magic_list *l, int (*compare)(const void **a, const void **b))
{
qsort(l->list, l->num_used, sizeof(void*),
(int ...
6
votes
4answers
956 views
Stabilizing the standard library qsort?
I'm assuming that the good old qsort function in stdlib is not stable, because the man page doesn't say anything about it. This is the function I'm talking about:
#include <stdlib.h>
...
5
votes
4answers
266 views
Bug in quicksort example (K&R C book)?
This quicksort is supposed to sort "v[left]...v[right] into increasing order"; copied (without comments) from The C Programming Language by K&R (Second Edition):
void qsort(int v[], int left, int ...
5
votes
4answers
173 views
What kinds of types does qsort not work for in C++?
std::sort swaps elements by using std::swap, which in turn uses the copy constructor and assignment operators, guaranteeing that you get correct semantics when exchanging the values.
qsort swaps ...
5
votes
2answers
169 views
C qsort not working correctly
I don't know what I'm doing wrong but the following code does not sort the array properly.
#include <stdio.h>
#include <stdlib.h>
int compare(const void* a, const void* b)
{
return ...
4
votes
2answers
92 views
identify item/class pointer after qsort
first question so please forgive my naiveness here.
I'm diving into a triangulation library for c++, which sorts an array of struct pointers before running it's triangulation method. I'm trying to ...
4
votes
9answers
714 views
Is stdlib's qsort recursive?
I've read that qsort is just a generic sort, with no promises about implementation. I don't know about how libraries vary from platform to plaform, but assuming the Mac OS X and Linux implementations ...
3
votes
3answers
756 views
Using qsort() with class pointers
I am using the in-built function qsort() to sort a vector of class item pointers.
class item {
int value;
vector<char> c;
...
...
};
//Declaration of vector
vector<item*> items;
...
3
votes
4answers
187 views
Qsort - Alternating sort order
I have a program that uses (and must continue to use) an old sorting function implementing qsort. I must also provide the sorting function with proper data to sort data both ascending (if string ...
3
votes
3answers
153 views
Is the manpage of qsort(3) right?
The manpage of the qsort(3) library routine gives an example of sorting the words given as arguments on the command-line. The comparison function reads as follows:
static int
cmpstringp(const ...
3
votes
3answers
158 views
Issue with qsort() - The sorting is not properly done (C)
I have a question regarding qsort.
This is a little bit weird, but my qsort function does not give me the correct output. The strange thing is that some of my compare functions are identical to my ...
3
votes
6answers
750 views
How to qsort an array of pointers to char in C?
Suppose I have an array of pointers to char in C:
char *data[5] = { "boda", "cydo", "washington", "dc", "obama" };
And I wish to sort this array using qsort:
qsort(data, 5, sizeof(char *), ...
3
votes
1answer
308 views
Quicksort implementation in C?
I really like the qsort function in C. It's so easy to use and allows me to procrastinate learning C++ template types. I have a few questions about this:
Is the algorithm used always a quicksort or ...
3
votes
2answers
386 views
Error in qsort function in Programming Pearls?
is it just me or this code in Programming Pearls is wrong (quicksort wants 2 const voids, no?) If so, is my solution right? Apologies, just learning...
int wordncmp(char *p, char* q)
{ int n = k;
...
2
votes
3answers
59 views
Deciphering qsort behavior
I need the functionality of qsort for my program to run, and so far hasn't been doing its job.
I'm essentially sorting an array of single character values in order to clump them into groups so I can ...
2
votes
1answer
133 views
alphanumeric sorting order of strings in C [closed]
Possible Duplicate:
Natural sort in C - “array of strings, containing numbers and letters”
When sorting strings in C with qsort and strcmp I have the problem that alphanumeric ...
2
votes
2answers
496 views
Using stdlib's qsort() to sort an array of strings
Some preface: I'm a computer engineering student taking a first class in C after 3 semesters of Java (up to data structures). This question is in relation to a homework assignment, but a few steps ...
2
votes
2answers
351 views
Problem trying to use the C qsort function
#include <stdio.h>
#include <stdlib.h>
float values[] = { 4, 1, 10, 9, 2, 5, -1, -9, -2,10000,-0.05,-3,-1.1 };
int compare (const void * a, const void * b)
{
return ( (int) ...
2
votes
4answers
198 views
quick sort problem
I use qsort from C libary and I have datatype
Element_type **pElement and Element_type is struct typedef element_type {int ,char ....}
example, and i call quicksor function with
...
2
votes
6answers
427 views
c++ - Is it possible to cast object of class to void *?
I am trying to use qsort from STL to sort array of edge:
struct edge
{
int w,v,weight;
};
by weight. What I am trying is:
int compare_e(const void *a, const void *b)
{
return ( *(edge ...
2
votes
2answers
866 views
qsort on an array of pointers to Objective-C objects
I have an array of pointers to Objective-C objects. These objects have a sort key associated with them. I'm trying to use qsort to sort the array of pointers to these objects. However, the first time ...
2
votes
2answers
1k views
Warning when using qsort in C
I wrote my comparison function
int cmp(const int * a,const int * b)
{
if (*a==*b)
return 0;
else
if (*a < *b)
return -1;
else
return 1;
}
and i have my declaration
int cmp ...
2
votes
2answers
489 views
Read variable-length records from a buffer - weird memory issues
I'm trying to implement an i/o intensive quicksort (C++ qsort) on a very large dataset. In the interests of speed, I'd like to read in a chunk of data at a time into a buffer and then use qsort to ...
2
votes
1answer
371 views
Help with pointers in C using qsort, bsearch
I'm having trouble with some of the pointer/array notation used. I have two lists and am sorting them, and then try to display them. I had 3 comments in my code below as to what the declarations are ...
2
votes
1answer
510 views
how to implement qsort in C
I need to implement qsort in C and sort in reverse lexicographical order. I'm confused on how to create and call the comparison function. This is what I have so far..
qsort (strArr, numLines, ...
1
vote
3answers
83 views
qsort of struct array not working
I am trying to sort a struct run array called results by a char, but when I print the array, nothing is sorted. Have a look at this:
struct run {
char name[20], weekday[4], month[10];
(And some ...
1
vote
2answers
53 views
It seems my qsort didn't give correct result why?
this is my compare function:
int compare (const void * a, const void * b)
{
ptnode * ia = (ptnode*)a;
ptnode * ib = (ptnode*)b;
return (int)(100.f*ia->x - ...
1
vote
2answers
71 views
Typecast for qsort function pointer
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
static int cmpstringp(const void *p1, const void *p2)
{
/* The ...
1
vote
1answer
61 views
Basic pointers and qsorting
I'm a beginner when it comes to pointers and recently for an assignment I was asked to write a function that would take in beginning and end pointers to an array and then sort them with qsort. Here is ...
1
vote
1answer
95 views
qsort in c not sorting my array of structs
I'm having an issue with my comparison function for qsort. I've got an array, mGames, of type ListEntry. ListEntry looks like this:
struct ListEntry
{
bool mLocal;
int mLastTurnTime;
};
...
1
vote
1answer
62 views
qsorting an array of class pointers
I've read a lot of material on how to do this. Unfortunately, they all resort to using something other than qsort (sort, usually). However, this is impossible for me as I'm not allowed to use ...
1
vote
2answers
113 views
qsort and bsearch an array of pointers
I need to sort an array of pointers to struc. In fact, I need to do searching among adresses to see if a given pointer to a struct is present in the array. Unfortunately, I don't have nothing ...
1
vote
2answers
79 views
Sorting dynamically allocated strings
I've got strange problem:
int cmp(const void *a, const void *b) {
const char *ia = (const char *) a;
const char *ib = (const char *) b;
return strcmp(ia, ib);
}
char ** names = NULL;
...
1
vote
1answer
111 views
c qsort seems to remove last value in array
I am using the built in qsort to sort an array of structs. But after the call to qsort the last element in the array seems to have had its value that I am sorting by set to empty.
Here is my code...
...
1
vote
2answers
346 views
C (beginner) : Why won't my qsort work? EDIT: From one error to another
I'm doing K&R exercise 6-4, which is:
6-4. Write a program that prints the distinct words in its input sorted into decreasing order of frequency of occurrence. Precede each word by its count.
...
1
vote
1answer
246 views
How to thread the sorting of a QSortFilterProxyModel?
The main view of my application contains a one-level (no children) QTreeView that displays on average 30,000 items. Due to the way the items are created, they are inserted into the model unsorted. ...
1
vote
8answers
617 views
Is qsort thread safe?
I have some old code that uses qsort to sort an MFC CArray of structures but am seeing the occasional crash that may be down to multiple threads calling qsort at the same time. The code I am using ...
1
vote
1answer
214 views
bsearch function in c
If I have two functions:
void SortStudents(char *studentList[], size_t studentCount)
{
qsort(studentList, sizeof(studentList)/sizeof(studentList[0]), sizeof(studentList[0]), Compare);
}
int ...
1
vote
5answers
2k views
Sorting a list with qsort?
I'm writing a program in which you enter words via the keyboard or file and then they come out sorted by length. I was told I should use linked lists, because the length of the words and their number ...
1
vote
3answers
3k views
How to write a compare function for qsort from stdlib?
I have a structure:
struct pkt_
{
double x;
double y;
double alfa;
double r_kw;
};
typedef struct pkt_ pkt;
A table of these structures:
pkt *tab_pkt;
tab_pkt = malloc(ilosc_pkt * ...
0
votes
1answer
60 views
function to compare ints when using qsort on array of structure pointers in c
There are lots of questions on stackoverflow regarding how to sort an array of structure pointers. I looked through them all, to no avail. I want to sort an array of pointers to an array of ...
0
votes
2answers
68 views
C - Arrays, Sorting, and Modifying
Been working on a task that has been the subject of a whole variety of other question on SO!
I've gotten to the stage where again, I am trying to append a number to an array, though this time, the ...
0
votes
1answer
72 views
sort array of pointers to structures qsort
I'm trying to sort an array of pointers to structures where the key to compare is one of the structure's property.
I think that probably is the compare method.
Here's an example code.
#include ...
0
votes
1answer
85 views
memcmp to compare segments of an array (remove duplicates)
I've been working on this for a while (in C) and can't figure it out. I have a buffer containing an array of chars. I've used qsort to sort through the array and it's all in proper order now. I now ...
0
votes
2answers
52 views
qsort with key value pairs
I am using the C library function qsort to sort a bunch of integer keys. Any ideas, suggestions, pointers on how I can extend it to sort key-value pairs, where the integer keys can have any associated ...
0
votes
1answer
81 views
use qsort with comparator function
i know qsort from c library and i have implemented it with chars and integers(convert from const void * form to relevant form) but now i am implementing code which gives me longest duplicated ...
0
votes
2answers
102 views
Segfault using qsort
I need to sort an array of characters in order to iterate over it and print out the unique data points and their count. This array is held inside a linked list node, and I want to use qsort to do ...
0
votes
3answers
180 views
Doesn't qsort() C library function work on linked lists?
I am trying to sort a singly linked list which has been created and all its items,pointers initialized. I am trying to use qsort() C library function as shown below. It doesn't seem to sort the list. ...
0
votes
2answers
118 views
Writing a comparision function for qsort
I'm writing a comparision function that compares and organizes names by ascending order of last name and if both last names are the same, descending order of first names. The function I have right now ...
0
votes
3answers
95 views
problem by ordering a data structure using the qsort function in C
I need to order a array of data structure that contains information relating to a node origin, destination and weight. the problem is not ordered properly, because if two values are equal to ...