《数据结构笔记》- 栈


用数组实现栈#include <iostream>using namespace std;int MAX_SIZE = 10; // 定义栈的最大容量int *Stack = new int[MAX_SIZE]; // 动态分配数组空间int top = -1;

《数据结构笔记》-链表篇


第一个链表程序// 第一个链表程序#include <iostream>struct Node{ int data; Node* next;};int main() { Node* A = NULL; // Node* temp = (Node*)malloc(s

Java-数据结构-LinkedList链表


LinkedList实现:package cn.meowrain.Datastructure.collection;public class LinkedList<E> { //链表的头结点,用于连接之后的所有结点 private final Node<E> he