摘要:
一.安装anaconda3 前往清华园镜像下载anaconda3的安装包 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/?C=M&O=D 选择最新镜像Anaconda3-2023.09-0-Linux-x86_64.sh 安装 1 bas 阅读全文
摘要:
写数据结构作业时遇到的问题:需要给typedef定义的结构体中的成员数组赋初值。如下:写数据结构作业时遇到的问题:需要给typedef定义的结构体中的成员数组赋初值。如下: typedef struct { Node* nodes[maxsize]; int front,rear; }Queue; 阅读全文