【发布时间】:2014-03-01 18:02:58
【问题描述】:
我正在 Ubuntu 中使用 GCC 制作一个小型 ANSI C 应用程序。该程序查找字符串中每个字母的出现值,然后根据出现次数对它们进行降序排序。
我的 main.c 文件:
/*
* preprocessor directives
*/
#include "bubbleSort.h"
/*
* global variables
*/
char Ar[] = "All Gaul is divided into three parts, one of which the Belgae inhabit, the Aquitani another, those who in their own language are called Celts, in our Gauls, the third. All these differ from each other in language, customs and laws. The river Garonne separates the Gauls from the Aquitani; the Marne and the Seine separate them from the Belgae. Of all these, the Belgae are the bravest, because they are furthest from the civilization and refinement of [our] Province, and merchants least frequently resort to them, and import those things which tend to effeminate the mind; and they are the nearest to the Germans, who dwell beyond the Rhine , with whom they are continually waging war; for which reason the Helvetii also surpass the rest of the Gauls in valor, as they contend with the Germans in almost daily battles, when they either repel them from their own territories, or themselves wage war on their frontiers. One part of these, which it has been said that the Gauls occupy, takes its beginning at the river Rhone ; it is bounded by the river Garonne, the ocean, and the territories of the Belgae; it borders, too, on the side of the Sequani and the Helvetii, upon the river Rhine , and stretches toward the north. From 'Caesar's Conquest of Gaul', Translator. W. A. McDevitte. Translator. W. S. Bohn. 1st Edition. New York. Harper & Brothers. 1869. Harper's New Classical Library. Published under creative commons and available at http://www.perseus.tufts.edu/hopper/text?doc=Perseus:text:1999.02.0001";
/*
* main function
*/
int main(void) {
/*array to hold count of each letter in alphabet*/
int ABStats[ALPHABET_SIZE] = { 0 };
/*array to hold letters of alphabet*/
char chAlphabet[ALPHABET_SIZE] = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
/*pointers for use in finding frequency of characters*/
char *pAr = Ar;
char *pAlphabet = chAlphabet;
int *pABStats = ABStats;
GetFrequency(pAr, pABStats); /*get the frequency of each letter*/
DisplayVHist(pABStats, ALPHABET_SIZE); /*display the frequency of each letter*/
int i, j;
for (i = ALPHABET_SIZE-1; i >= 0; i--) {
for (j = 0; j < i; j++) {
if (*(pABStats+j) < *(pABStats+j+1)) {
Swap(pABStats+j, pABStats+j+1);
}
}
}
DisplayVHist(pABStats, ALPHABET_SIZE); /*display the frequency of each letter*/
return EXIT_SUCCESS; /*return zero*/
}
我的 bubbleSort.c 文件:
/*
* preprocessor directives
*/
#include "bubbleSort.h"
/*
* functions
*/
int GetFrequency(char *pAr, int *pABStats) {
int chNum = 0;
for (; *pAr != '\0'; pAr++) { /*check if at the end of the array*/
char ch = *pAr; /*store current letter as a char*/
if (isalpha(ch)) /*if character is a letter*/
chNum = (toupper(ch) - 'A'); /*return ascii code of specified letter*/
pABStats[chNum]++; /*store ascii value in array and increment array*/
}
return chNum;
}
void DisplayVHist(int *pABStats, int size) {
int i, j;
const float lengthAr = strlen(Ar); /*store length of array as a float*/
for (i = 0; i < size; i++) { /*for each letter in the alphabet*/
float chPercent = 100 * (*pABStats / lengthAr); /*calculate percentage*/
printf("'%c' --> %6.3f percent --> %3d occurances --> ", (i + 'A'), chPercent, *pABStats);
for (j = 0; j < (*pABStats / 2); j++) { /*for every two values being pointed to by pointer*/
printf("%c",'*'); /*print asterisk*/
}
printf("\n");
pABStats++;
}
}
void Swap(int *pA, int *pB) {
int temp;
temp = *pA;
*pA = *pB;
*pB = temp;
}
我的 bubbleSort.h 文件:
/*
* preprocessor directives
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#define ALPHABET_SIZE 26
/*
* global variables
*/
extern char Ar[];
/*
* function prototypes
*/
int GetFrequency(char*, int*);
void DisplayVHist(int*, int);
void Swap(int*, int*);
它目前所做的是按降序对出现值进行排序,这是我想要的,但是当我显示结果时,'A' 将具有最高值,这是错误的。我希望以与出现次数相同的方式对字母进行排序,以便出现次数最多的字母(即“E”)与其出现次数一起出现在列表的顶部。我创建了一个名为 chAlphabet 的 char 数组,以备不时之需。
我需要为此应用程序使用指针,即使它可能不是处理此应用程序的最有效方式。我还需要使用 bubbleSort.c 中的 Sort() 函数进行排序。
任何帮助将不胜感激。我对 C 编程相当陌生。谢谢。
【问题讨论】:
-
您的冒泡排序文件实际上没有排序;你为什么在
main这样做?文件名不一致是个糟糕的主意。 -
@FilipeGonçalves 我知道
for循环和所有逻辑都应该在Swap()函数内完成。 -
首先,一件小事:您调用函数
DisplayVHist两次,您确定要这样做吗?我想你可能只想在最后做一次...... -
@ThoAppelsin 我已经调用了两次进行调试,但你说得对,我只希望最后调用一次。
标签: c loops pointers bubble-sort