【问题标题】:How "struct" members are indexed? How to access them correctly in C?“结构”成员如何被索引?如何在 C 中正确访问它们?
【发布时间】:2020-07-28 12:11:23
【问题描述】:

“候选”stuct 如何在以下代码中被索引? 当我尝试打印创建的结构的最后一个成员(最后一个索引?)是 Candidate["last index"].name 时,假设我确实有 4 个候选,这将导致 = argc - 1 的候选计数等于 4,所以,我认为如果我通过索引 4 访问第 4 个成员,我应该到达空终止符,对吗?但这没有发生!代码是这样的

(在程序末尾找到)

printf("Winner is %s", candidates[4].name);

它完美地打印出候选人姓名数组的第四个成员姓名!那个怎么样? 不应该是这样的

printf("Winner is %s", candidates[3].name)

这是我写的完整程序:


#include <cs50.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>

// Max number of candidates
#define MAX 9   // define MAX as a constant = 9 (or any number which might be used without '=' sign).
// define syntax won't allocate any memory for the constant 'MAX', it can be used later as int MAX
// which = int 9

// Candidates have name and vote count, stuct is the best to use to create a custom data type.
typedef struct
{
    string name;
    int votes;
}
candidate;

// Array of candidates
candidate candidates[MAX];

// Number of candidates as a global variable
int candidate_count;

// Function prototypes
bool vote(string name);
void print_winner(void);

int main(int argc, string argv[])
{
    // Check for invalid usage, the args. must be more than 2, i.e 3 and up!
    if (argc < 2)
    {
        printf("Usage: plurality [candidate ...]\n");
        return 1;
    }

    // Populate array of candidates
    candidate_count = argc - 1; // -1 because one argument is the program's name. the rest are the
    // candidates' names.
    if (candidate_count > MAX)
    {
        printf("Maximum number of candidates is %i\n", MAX);
        return 2;   // err code 2 means that the candidates number is exceeded
    }
    for (int i = 0; i < candidate_count; i++)   // Store the candidates names from the argv[] into,
    // the struct candidate of candidates.name[] array to be globally available.
    {
        candidates[i].name = argv[i + 1]; // +1 because the 0th index is the programs name.
        candidates[i].votes = 0;    // initializing 0 for all candidates
    }
    // Enter the number of people allowed to vote, in other words, total number of votes allowed.
    int voter_count = get_int("Number of voters: ");

    // Loop over all voters to enter their votes for a candidate of the available names.
    for (int i = 0; i < voter_count; i++)
    {
        string name = get_string("Vote: ");

        // Check for invalid vote
        if (!vote(name))    //  Use function vote(string name) to check for the presence,
                            //of the candidate's name.
        {
            printf("Invalid vote.\n");
        }
    }

    // Display winner of election
    print_winner(); //  call this func. to print the winner's name.
}

// Update vote totals given a new vote
bool vote(string name)
{   // loop over all candidates names checking it's availability by comparing it to user-entered name.
    // global variable candidate_count is used to keep track of number of candidates.
    for (int i = 0; i < candidate_count ; i++)
    {

        if (strcmp (name, candidates[i].name) == 0)
        {
            // Update the candidate's vote count.
            candidates[i].votes++;  //  update the votes count for the candidate indexed @ i.
            return true;
        }
    }   //  End for() iteration over the candidates names indeces.

    return false;
}

// Print the winner (or winners) of the election
void print_winner(void)
/*
    Bubble sorting Algorithm;
    - A pass is a number of steps where the adjacent elements are compared to eachother from left to right in
    an int array each one with the one next to it.
    - If an array has a number of elements of 5, so, n = 5.
    - There will always be a maximum of n - 1 passes in bubble sorting
    - There will be a maximum of n - 1 comparisons of items in each pass if code is not optimized
*/
{
    int swap = 0; // A flag to check if swapping happened.
    //( To check if the array is sorted, swap happening = not sorted yet else the array is sorted)
    for (int i = 0; i <= candidate_count - 1; i++)  // passes = n - 1 where n = number of elements to compare.
    {
        for (int j = 0; j <= candidate_count - 1 - i; j++)  //  Number of comparisions(elements to be checked -
        //  with thier adjacent ones) to be conducted in each pass, after pass the last element will always
        //  be the greatest element there for no need to compare it with the element before it. therefore,
        //  candidate_count - 1 - i where i value starting form 0 by the outer for loop reduces the number -
        //  of steps or elements to be checked each iteration
        {
            /*  if the first candidate number of votes element in the array is Greater-Than the adjacent next
            one, swap them and keep a flag or indicate that you did swap them.
            */
            if ( candidates[j].votes > candidates[j + 1].votes)
            {
                // Swap the position of the struct candidates elements inside 
                candidate temp = candidates[j];
                candidates[j] = candidates[j + 1];
                candidates[j + 1] = temp;
                swap = 1;   // a flag to indicated the swapping actually happened.
            }   //  End swapping if() statement.

        }
        if (swap == 0)  //   if no swapping happened
            break;
    }
    
    /*  When Populating array of candidates, candidate_count = argc - 1; // -1 because one argument
        is the program's name. the rest are the candidates' names.
    */
    printf("Winner is %s, candidate count = %d \n", candidates[candidate_count].name, candidate_count);
    return;
}  

从 cmets 复制:

如果我在终端中运行程序并添加“printf”来打印从索引 0 到 5 开始的候选人姓名和选票,这就是我得到的:

c ~/pset3/plurality/ $ ./plurality moh zoz sos
Number of voters: 5
Vote: moh
Vote: moh
Vote: moh
Vote: zoz
Vote: sos
Winner is moh, candidate count = 3
The candidate name : (null) votes : 0
The candidate name : zoz votes : 1
The candidate name : sos votes : 1
The candidate name : moh votes : 3
The candidate name : (null) votes : 0 
The candidate name : (null) votes : 0 

解决方案只是从该行的条件中删除“等于”:

for (int j = 0; j <= candidate_count - 1 - i; j++)

看起来像这样

for (int j = 0; j < candidate_count - 1 - i; j++)

【问题讨论】:

  • 空终止符适用于用于字符串的字符数组。数组和结构都不会在最后一个元素之后隐式包含空终止符。在您的代码中,candidates 像任何其他数组一样被索引,从零开始并按顺序继续。因此,访问“第四个”候选者是通过使用索引 3 完成的。
  • 如果您注意到任何奇怪的事情,那是由于未完全初始化结构数组然后访问超出数组的正确边界的未定义行为。
  • @h0r53 这就是这里的问题!我应该通过索引 3 访问第四个候选人,但这没有发生!这就是我对我朋友的要求。
  • 当您为第 4 个候选人访问索引 3 时会发生什么?
  • 我认为您的问题出在冒泡排序中。当您对超出范围范围的最大元素进行排序时,代码candidates[j + 1] = temp; 在我看来。附带说明:您不需要在 print_winner 函数中进行排序。您可以简单地遍历数组并搜索最大的投票数。

标签: c struct cs50


【解决方案1】:

您的冒泡排序有错误。

第二个循环的条件是j &lt;= candidate_count - 1 - i,但它应该是j &lt;= candidate_count - 2 - i。这是因为您交换了jj+1 的元素。但是根据您的条件j == candidate_count - 1,这会导致candidate_count-1candidate_count 的交换。

要查找此类错误,您应该学习如何使用调试器或将调试输出添加到您的程序中,例如

printf("swap(%d, %d)\n", j, j+1);

然后你可以更好地理解你的程序实际做了什么。

作为旁注: candidates 的排序不是必需的,因为您可以简单地遍历数组并搜索具有最大 vote 的候选者,例如:

if (candidate_count < 1) {
    // some error handling
} else {
    candidate biggest = candidates[0];
    for (int i = 1; i < candidate_count; i++) {
        if (biggest.vote < candidates[i].vote) {
            biggest = candidates[i];
        }
    }
    // do what ever you want to do with the winner
}

【讨论】:

  • 调试器是关键,毫无疑问!
  • @Leos313 老实说在某些情况下我认为调试输出可以更好更快地发现问题。但毫无疑问,学习如何调试程序很重要。
  • 谢谢大家,特别感谢@Ackdari,这解决了我的问题!我是 C 和编程新手,一般来说,我是一名电子专家,涉足微控制器和嵌入式编程世界对我来说仍然有些挑战
  • @The_M_Code,我想推荐使用 GDB (gnu.org/software/gdb)。在网络上查找示例和教程。此外,许多图形调试器也是基于 GDB 的。这是一个很好的建议,在嵌入式域中非常有用
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-12-16
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多