摘要: #include <stdio.h> #include<string.h> #include<stdlib.h> //第一关代码 struct node {//此处填写代码,定义链表结点类型,包含一个存放整型数据的 成员,和一个指向下一个结点的成员 int data; struct node* ne 阅读全文
posted @ 2020-10-30 20:37 ethon-wang 阅读(443) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/a845717607/article/details/86530433 map使用: 声明:map<键,值> 变量名; 存储: scanf("%d %lf",&e,&coe); mp1[e]=coe; 遍历:for(map<int,double>::ite 阅读全文
posted @ 2020-10-30 17:23 ethon-wang 阅读(97) 评论(0) 推荐(0) 编辑