摘要: 点击查看代码 //Inplementation of Binary Search Tree #include<iostream> using namespace std; struct bstnode { int data; bstnode* left; bstnode* right; }; /*b 阅读全文
posted @ 2024-01-22 21:17 bituion 阅读(18) 评论(0) 推荐(0)
摘要: 点击查看代码 //Queue-Linked List Implementation #include<iostream> using namespace std; struct node { int data; node* next; }; node* front = NULL; node* rea 阅读全文
posted @ 2024-01-22 11:20 bituion 阅读(11) 评论(0) 推荐(0)