摘要:
数组模拟单链表(静态) C++语言代码实现 #include <iostream> using namespace std; // 利用数组模拟单链表 const int n = 100010; // head表示头结点的下标 // e[i] 表示节点i的值 // ne[i] 表示节点i的next指 阅读全文
摘要:
二叉树遍历方式 先序遍历 根左右 中序遍历 左根右 后序遍历 左右根 C语言代码实现 #include "stdio.h" #include "stdlib.h" void pre_order(int arr[], int length, int k); // 二叉树先序遍历 void mid_or 阅读全文