
BST
love music.
中山大学计算机博士在读,曾就职于腾讯等公司,目前从事AI多模态大模型研究。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PAT甲级 1064 Complete Binary Search Tree (30 分)完全二叉树、BST
1064 Complete Binary Search Tree (30 分)A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with key...原创 2018-09-23 22:18:18 · 229 阅读 · 0 评论 -
C++ 邻接链表进行图的创建、BFS、DFS、连通图数量
参考链接:https://blog.youkuaiyun.com/s634772208/article/details/45580333图的创建采用邻接表的形式。代码实现如下:#include<iostream>#include<queue> using namespace std;#define maxSize 100int visited[maxSize] ...原创 2018-07-18 19:37:38 · 1626 阅读 · 0 评论 -
1099 Build A Binary Search Tree (30 分)dfs、bfs、bst
1099 Build A Binary Search Tree (30 分)A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with keys...原创 2018-11-12 11:52:01 · 294 阅读 · 0 评论