
PAT之路-甲级
pat甲级
菜菜2022
这个作者很懒,什么都没留下…
展开
-
1020 Tree Traversals (25 分)
思路:用所给的后序和中序建树,然后层次遍历此树。 #include<stdio.h> #include<queue> using namespace std; int N,i,post[10005],in[10005]; struct node{ int data; node* lchild,*rchild; }; node* newNode(int x){...原创 2019-03-09 11:56:29 · 329 阅读 · 0 评论 -
1032 Sharing (25 分)
【题目描述】 To store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share the same sublist if they share the same suffix. For e...原创 2019-02-20 17:18:30 · 358 阅读 · 1 评论 -
A1052 Linked List Sorting 链表的题坑太深
【题目描述】 1052 Linked List Sorting A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key and a Next pointer...原创 2019-02-27 16:37:38 · 383 阅读 · 0 评论