数据结构-1. 线性表、栈和队列

1. 线性表、栈和队列 1.1 链表 1.1.1 链表的实现 1 class Node{ 2 public: 3 int value; 4 Node *next; 5 Node(const int nodeValue,Node *nextNode){ 6 value=nodeValue; 7 nex
posted @ 2024-03-01 15:13  kitsum  阅读(3)  评论(0编辑  收藏  举报