- 博客(3)
- 收藏
- 关注
原创 c++ vector的使用
#include<iostream>#include<vector>struct Vertex{ float x, y, z; Vertex(float x, float y, float z) : x(x), y(y), z(z) { std::cout << "constructor" << std::endl; } Vertex(const Vertex& vertex) : x(vertex.x), y(vert
2023-03-14 22:49:22
123
原创 数据结构:设计单链表
数据结构学习:单链表的设计,涉及:链表的初始化,获取对应节点的值,增加头节点,增加尾节点,在指定位置增加节点,以及删除指定位置节点
2022-09-18 23:29:19
247
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人