- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在对 count
进行排序obj
的字段objArray
中的元素在descending order
正如您在下面的程序中看到的,但我也希望我的程序检查两个当前的 objA.count
和objB.count
cmpfunc()
中使用的字段相等,然后检查 objb.word
是否相同字符串大于 objA.word
字符串,如果是的话交换它们。但是,使用 input.txt
我在下面包含的文件中,您可以在输出中看到某些内容不起作用。您能帮我弄清楚那是什么吗?这个逻辑对我来说似乎是正确的,但也许我误解了 cmpfunc()
的某些内容。有效或哪个字符串“更大”。
程序.c:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
/* PREPROCESSOR */
#define MAX_STRING_SIZE 512 /* each line in the file can have up to 512 chars */
/* Function Declarations */
void sortedCount(int,char **);
void *malloc_or_end(size_t);
/* Function Definitions */
/**
* Allocates sz bytes of memory using malloc, checks if
* the memory allocation was successfull and return a void* to the
* beginning of the allocated memory.
* */
void* malloc_or_end(size_t sz) {
void *pointer;
pointer = malloc(sz);
if(pointer == NULL) {
printf("Out of memory, terminating.\n");
exit(-1);
}
return pointer;
}
/**
* Function count: Prints the number of times
* that the selected word is found inside the N first words
* of the file.
* */
int count(int N, char *word, int callID,char **wordList) {
int i = 0;
int count = 0;
for(i = 0; i < N; i++) {
if(strcmp(word,wordList[i]) == 0) {
count++;
}
}
if(callID == 0) { /* if callID == 0 (main called count and we want the output) */
printf("%d",count);
printf("\n");
}
return count;
}
typedef struct wordAndCount {
int count;
char *word;
} obj;
int cmpfunc(const void * a, const void * b) {
obj objA = *(obj *)a;
obj objB = *(obj *)b;
int res = objA.count - objB.count;
if(res > 0) {
return -1;
} else if(res < 0) { /* 2nd count is greater than the first */
return 2;
} else {
int cmpResult = strcmp(objB.word,objA.word);
if(cmpResult > 0) {
} else if(cmpResult < 0) {
/* do nothing */
char *temp = malloc_or_end(MAX_STRING_SIZE * sizeof(char));
strcpy(temp,objA.word);
strcpy(objA.word,objB.word);
strcpy(objB.word,temp);
free(temp);
} else {
/* do nothing */
}
return 0;
}
}
void sortedCount(int N,char **wordList) {
int i,j = 0;
int *occurrences;
obj *objArray;
/* mem allocation */
objArray = malloc_or_end(N * sizeof(obj));
occurrences = malloc_or_end(N * sizeof(int));
/* initialize occurrences for the "each word is unique and occurs only once" scenario */
for(i = 0; i < N; i++) {
objArray[i].word = malloc_or_end(MAX_STRING_SIZE * sizeof(char));
occurrences[i] = 1;
}
determineUniqueWords(occurrences,wordList,N);
/* populate the wordCounts & uniqueWords "arrays" with the appropriate data in order to sort them successfully */
for(i = 0; i < N; i++) {
if(occurrences[i] > 0) {
objArray[i].count = count(N,wordList[i],1,wordList);
strcpy(objArray[i].word,wordList[i]);
}
}
/* sort */
qsort(objArray,N,sizeof(obj),cmpfunc);
for(i = 0; i< N; i++) {
if(objArray[i].count == 0 || (strcmp(objArray[i].word,"") == 0)) {
continue;
}
printf("%d %s\n",objArray[i].count,objArray[i].word);
}
/* mem free */
for(i = 0; i < N; i++) {
free(objArray[i].word);
}
free(objArray);
free(occurrences);
return;
}
/* Stelios Papamichail AM 4020 */
int main(int argc,char *argv[]) { /* argv[1] = op argv[2] = name argv[3] = <word> */
int N = -1;
int i = 0;
int spaceNum,nlNum = -1;
FILE *file;
char **wordList;
file = fopen(argv[2],"r");
if(file == (FILE *) NULL) { /* check if the file opened successfully */
fprintf(stderr,"Cannot open file\n");
}
fscanf(file,"%d",&N); /* get the N number */
wordList = malloc_or_end(N * sizeof(char *)); /* allocate memory for pointers */
for(i = 0; i < N; i++) {
wordList[i] = malloc_or_end(MAX_STRING_SIZE * sizeof(char)); /* allocate memory for strings */
}
populateWordsArray(N,wordList,file);
if(strcmp(argv[1],"-reverse") == 0) {
reverse(N,wordList);
} else if(strcmp(argv[1],"-first") == 0) {
first(N,wordList);
} else if(strcmp(argv[1],"-middle") == 0) {
middle(N,wordList);
} else if(strcmp(argv[1],"-last") == 0) {
last(N,wordList);
} else if((strcmp(argv[1],"-count") == 0) && argv[3] != NULL) {
i = count(N,argv[3],0,wordList);
} else if((strcmp(argv[1],"-sorted") == 0) && (strcmp(argv[3],"-count") == 0)) {
sortedCount(N,wordList);
} else {
/* i only wish i could print something here */
}
/* End of program operations */
for(i = 0; i < N; i++) {
free(wordList[i]);
}
free(wordList);
fclose(file);
return 0;
}
输入.txt:
11 this is a simple text is a a z z z
输出:
3 a
3 z
2 is
1 simple
1 text
1 this
预期输出:
3 z
3 a
2 is
1 simple
1 this
1 text
最佳答案
您的比较函数不应该操作被比较的对象。您应该只返回一个比较结果:
int cmpfunc(const void * a, const void * b)
{
obj *objA = (obj *)a;
obj *objB = (obj *)b;
int res = objA->count - objB->count;
// negative value means A is less than B.
if(res == 0)
{
res = strcmp(objA->word, objB->word);
// negative value if A is less than B.
}
return res; // or -res for other sorting direction
}
当您可以使用指针直接在数组中访问元素时,也无需复制函数中的元素。
关于在 qsort 中使用 strcmp() 比较字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54368031/
我正在尝试对这个字符串列表进行排序:["a", "z", "b"]。所以答案应该是 ["a", "b", "z"]。但是,当我尝试使用 C 的 qsort() 时,没有任何 Action !我做错了什
我尝试使用 qsort 创建一些基本代码来对字符串数组进行排序,但根据 gdb,它在 qsort 中崩溃了: #include #include static int pcmp(const voi
我想使用 qsort(...) 对 2D int 数组进行排序,但我的比较函数似乎是错误的。 qsort的参数如下: qsort(void *base, size_t nitems, size_t s
我一直在寻找一种方法来对 C 中的数组子集进行排序,而无需将元素移动到临时数组并将它们复制回来。我可能对 qsort 理解不好,但我认为下面的代码应该可以工作: qsort(&my_struct_ar
我正在使用标准 c 库的 qsort 函数对组织在数组中的数百万个结构进行排序。我试图通过创建具有相同长度的结构指针数组来优化性能。与我的预期相反,第二个变体的执行时间较慢: qsort 结构数组:1
我成功地对结构数组进行了排序,其中每个结构仅包含一个 char 字符串。然而,我的问题是,对于大约的结构数组。 900,000 个元素,qsort 比我预期的要长很多(qsort 需要大约 2 分钟来
这个问题在这里已经有了答案: How to qsort an array of pointers to char in C? (8 个答案) 关闭 5 年前。 我尝试使用 qsort 对字符串数组进
我正在尝试重构一个当前是独立 C 程序的实用程序,以便我可以创建一个可重用的库。它包括根据全局数组中的相应值对数组进行排序的步骤。 // Global lookup table double *rat
我尝试对下面的一个struct进行排序,目的是对它们的错误率进行排序,同时保留sid和did的信息。虽然没有编译错误,但我在运行时遇到段错误。我想知道出了什么问题.... #include #inc
我正在尝试创建一个函数模板,该模板接收一个数组作为输入并对它进行排序。为了对其进行排序,我想我可以使用C++标准库的头文件qsort()中包含的cstdlib函数。 qsort()函数需要将比较器函数
#include #include #include int sortstring(const void *str1, const void *str2) { const char *r
我正在尝试对一个名为 results 的 struct run 数组进行排序,但是当我打印该数组时,没有任何排序。看看这个: struct run { char name[20], weekday
我尝试对下面的一个struct进行排序,目的是对它们的错误率进行排序,同时保留sid和did的信息。虽然没有编译错误,但我在运行时遇到段错误。我想知道出了什么问题.... #include #inc
考虑一个结构指针数组。以下代码取自您可能会找到的示例 here 。我想要为这两排铸件进行移植。我对这种“双重类型转换”不熟悉。 int myptrstructcmp(const void *p1, c
为什么我们在使用qsort()时,int(*compar)(const void*,const void*)没有添加任何参数,却也能完成它们的功能呢? 比如这样: double vals[NUM];
void qsort ( void* base, size_t num, size_t size, int (*compar)(const void*,const vo
嗨,我是学习 C 编程语言的新手,很难理解这个问题。我想对指向 struct[person] 指针数组的双指针进行排序。我需要根据多个标准对结构指针进行排序。 (年龄按升序排列,姓名和高度均按降序排列
我想对数组的特定列进行排序,但必须相应地移动其他元素例如 UNSORTED ARRAY 40 2 30 6 20 1 REQUIRED SORTED ARRAY 20 1 30 6 40 2 如果不能
假设我们有一个结构: struct product { char name[30]; float price; }; 我想首先使用 qsort 按价格对其进行排序,如果价
这个问题已经有答案了: What sorting algorithm does qsort use? (3 个回答) 已关闭 9 年前。 该功能是否qsort()在stdlib.h实际上使用快速排序算
我是一名优秀的程序员,十分优秀!