0

TH の次のコードがクラッシュしていますが、その理由がわかりません。次のリンクされたリストで整数が見つかった回数を数えようとしています..しかし、xcode はメインからの int count=0 がスレッドを壊していると言い続けていますか?

 #include <iostream>  
 using namespace std;

struct Node {
  int val;
  Node *next;
};


  int countNum (Node *head, int key);
  Node* cons (int x, Node* p);

   int main()
   {

     Node *head = (1,cons(2,cons(2,(cons(4,(cons(5,nullptr)))))));

     int counts=0;

     counts= countNum(head,2);

     cout<< counts<< head;

     return 0;
 }

  Node* cons (int x, Node* p){

        Node *q=new Node;
        q->val=x;
        q->next=p;

    return p;
 }

 int countNum (Node *head, int key) {
         int count=0;

        if (head==nullptr)
             return 0;

         Node *follow=head;

          while (follow!=nullptr) {

                if(follow->val==key)
                   count++;

                follow=follow->next;

          }

            cout<<count;
           return count;
    }
4

2 に答える 2