16 Star 1 Fork 1

UCAS-SAS-Robot-Team/算法组作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
RM02.cpp 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
Junyan721113 提交于 2022-10-03 12:45 . fix: version revert
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
struct node {
int val;
node* nxt;
};
class map {
private:
struct point;//预定义
struct edge;
vector<point> points;
public:
map(int, int);
~map();
};
struct map::point {
int no;
edge* edges;
};
struct map::edge {
int len;
point* to;
};
map::map(int a, int b) {
points.resize(a);
for(auto it = points.begin(); it != points.end(); it++)//这个auto是vector<point>::iterator
(*it).no = b;
}
map::~map() {
points.clear();
}
map map_pointer(1, 1);
int main() {
auto f = [](int a, int b) -> int {return a + b;};
cout << f(25, 15) << endl;
vector<int> aa;
sort(aa.begin(), aa.end(), [](int x, int y) -> bool {return x > y;});
int a = 123;
int* p;
p = &a;//取a的地址放进p中,使p指向a
*p = 123;//将p所指的位置赋成123
cout << p << ' ' << *p << endl;
node* newnode = new node;
delete newnode;
node* newnode2 = (node*)malloc(sizeof(node));//void*类型强转成node*
free(newnode2);
newnode2 = (node*)calloc(sizeof(node), 10010);//calloc会自带清零
(*newnode2).nxt = new node;
free(newnode2);
//不要漏内存
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ucas-sas-robot-team/RMhomework.git
git@gitee.com:ucas-sas-robot-team/RMhomework.git
ucas-sas-robot-team
RMhomework
算法组作业
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385