qq_43006674 2020-06-03 01:33 采纳率: 0%
浏览 174
已采纳

图片这两处语法出错了还是什么 为何总是报括号前缺少分号呢?

#include<vector>
#include<string.h>
#include<sstream>
#include<map>
#include<windows.h>
#include"MyStack.h" 
#include"DrawUtil.h"
#include"mapdata.h"
#include <iostream.h>

#define SLEEP_MS 1000
using namespace std;
string fromIntToString(int a)
{
    string res;
    stringstream ss;
    ss << a;
    ss>> res;
    return res;
}
int sequence[4][2]=
{
    {0,-1},{1,0},{0,1},{-1,0}
};
int main(int argc, char *argv[])
{
    std::map<string,int*>hm;
    MyStack<int*>stack;
    int visited[MAP_SIZE][MAP_SIZE];
    memset(visited,0,MAP_SIZE*MAP_SIZE*sizeof(int));
    bool flag=true;
    int start[4]={0,0,0,0};
    stack.push(start);
    int endCol;
    int endRow;
    while(flag)
    {
        int* currentEdge=stack.pop();
        int tempTarget[2]={currentEdge[2],currentEdge[3]};
        if(visited[tempTarget[1]][tempTarget[0]]==1)
        {
            continue;
        }
        visited[tempTarget[1]][tempTarget[0]]=1;
        hm[fromIntToString(tempTarget[1])+":"+fromIntToString(tempTarget[0])]=
        new int[2]{currentEdge[1],currentEdge[0]};
        Sleep(SLEEP_MS);
         if(mapStatus[tempTarget[1]][tempTarget[0]]==2)
         {
            endCol=tempTarget[0];
            endRow=tempTarget[1];
            break;
        }
        int currCol=tempTarget[0];
        int currRow=tempTarget[1];
        for(int k=0;k<4;k++)
        {
            int* rc=sequence[k];
            int i=rc[1];
            int j=rc[0];
            if(currRow+i>=0&&currRow<MAP_SIZE&&currCol>=0&&currCol<MAP_SIZE&&mapStatus[currRow+i][currCol+j]!=0)
            {
                int* tempEdge=new int[4]
                {
                    currCol,currRow,currCol+j,currRow+i
                };
                stack.push(tempEdge);
            }
            drawMap(mapStatus,visited,true);
         }
         MyStack<string> pathStr;
         string currP=fromIntToString(endRow)+":"+fromIntToString(endCol);
         pathStr.push(currP);
         while(true)
         {
            int* tempP=hm[currP];
            currP=fromIntToString(tempP[0])+":"+fromIntToString(tempP[1]);
            if(mapStatus[tempP[0]][tempP[1]]==1)
            {
                mapStatus[tempP[0]][tempP[1]]=4;
             }
             pathStr.push(currP);
             if(tempP[0]==0&&tempP[1]==0)
             {
                break;
            }
        }
    cout<<"=========================================="<<endl;
    int count=0;
    while(!pathStr.isEmpty())
    {
        count++;
        cout<<pathStr.pop()<<"->";
        if(count==10);
        {
            count=0;
            cout<<endl; 
        }
    }
    cout<<"Finish"<<endl;
    cout<<"============================================"<<endl;
    drawMap(mapStatus,visited,false);



    return 0;
}}

图片说明图片说明图片说明

  • 写回答

1条回答 默认 最新

  • threenewbee 2020-06-03 10:37
    关注

    不支持这种初始化的形式
    你就写
    int * tempEdge = new int[4];
    tempEdge[0] = currCol;
    tempEdge[1] = currRow;
    ...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用