第三講 樹(上)

来源:http://www.cnblogs.com/VincentValentine/archive/2017/05/09/6833315.html
-Advertisement-
Play Games

03 樹1:樹的同構 Description: 給定兩棵樹T1和T2。如果T1可以通過若幹次左右孩子互換就變成T2,則我們稱兩棵樹是“同構”的。例如圖1給出的兩棵樹就是同構的,因為我們把其中一棵樹的結點A、B、G的左右孩子互換後,就得到另外一棵樹。而圖2就不是同構的。現給定兩棵樹,請你判斷它們是否是 ...


03-樹1:樹的同構
Description:

給定兩棵樹T1和T2。如果T1可以通過若幹次左右孩子互換就變成T2,則我們稱兩棵樹是“同構”的。例如圖1給出的兩棵樹就是同構的,因為我們把其中一棵樹的結點A、B、G的左右孩子互換後,就得到另外一棵樹。而圖2就不是同構的。現給定兩棵樹,請你判斷它們是否是同構的。

Input:

輸入給出2棵二叉樹樹的信息。對於每棵樹,首先在一行中給出一個非負整數N(≤10),即該樹的結點數(此時假設結點從0到N-1編號);隨後N行,第i行對應編號第i個結點,給出該結點中存儲的1個英文大寫字母、其左孩子結點的編號、右孩子結點的編號。如果孩子結點為空,則在相應位置上給出“-”。給出的數據間用一個空格分隔。註意:題目保證每個結點中存儲的字母是不同的。

Output:

如果兩棵樹是同構的,輸出“Yes”,否則輸出“No”。

SampleInput1:

8
A 1 2
B 3 4
C 5 -
D - -
E 6 -
G 7 -
F - -
H - -
8
G - 4
B 7 6
F - -
A 5 1
H - -
C 0 -
D - -
E 2 -

SampleOutput1:

Yes

SampleInput2:

8
B 5 7
F - -
A 0 3
C 6 -
H - -
D - -
G 4 -
E 1 -
8
D 6 -
B 5 -
E - -
H - -
C 0 2
G - 3
F - -
A 1 4

SampleOutput2:

No

Codes:
//#define LOCAL

#include <cstdio>

#define M 15
struct Tree { int l, r; char p; };
Tree T1[M], T2[M];

int bT(Tree T[]) {
    int i, n, A[M]; char a, b;
    scanf("%d", &n);
    if(n) {
        for(i=0; i<n; ++i) A[i] = 0;
        for(i=0; i<n; ++i) {
            scanf(" %c %c %c", &T[i].p, &a, &b);
            if(a != '-') { T[i].l = a-'0'; A[T[i].l] = 1; } else T[i].l = -1;
            if(b != '-') { T[i].r = b-'0'; A[T[i].r] = 1; } else T[i].r = -1;
        }
    } else return -1;
    for(i=0; i<n; ++i) 
        if(!A[i]) return i;
}

int same(int r1, int r2) {
    if(r1==-1 && r2==-1) return 1;
    if((r1==-1&&r2!=-1) || (r1!=-1&&r2==-1) || (T1[r1].p!=T2[r2].p)) return 0;
    if(T1[r1].l==-1 && T2[r2].l==-1) return same(T1[r1].r, T2[r2].r);
    if(T1[r1].l!=-1 && T2[r2].l!=-1 && T1[T1[r1].l].p==T2[T2[r2].l].p)
        return same(T1[r1].l, T2[r2].l)&&same(T1[r1].r, T2[r2].r);
    else return same(T1[r1].l, T2[r2].r)&&same(T1[r1].r, T2[r2].l);
}

int main()
{
    #ifdef LOCAL
        freopen("E:\\Temp\\input.txt", "r", stdin);
        freopen("E:\\Temp\\output.txt", "w", stdout);
    #endif

    int r1, r2;
    r1 = bT(T1), r2 = bT(T2);
    if(same(r1, r2)) printf("Yes\n");
    else printf("No\n");

    return 0;
}
03-樹2:List Leaves.
Description:

Given a tree, you are supposed to list all the leaves in the order of top down, and left to right.

Input:

Each input file contains one test case. For each case, the first line gives a positive integer N(≤10) which is the total number of nodes in the tree -- and hence the nodes are numbered from 0 to N−1. Then N lines follow, each corresponds to a node, and gives the indices of the left and right children of the node. If the child does not exist, a "-" will be put at the position. Any pair of children are separated by a space.

Output:

For each test case, print in one line all the leaves' indices in the order of top down, and left to right. There must be exactly one space between any adjacent numbers, and no extra space at the end of the line.

SampleInput:

8
1

0
2 7

5
4 6

SampleOutput:

4 1 5

Codes:
//#define LOCAL

#include <cstdio>
#include <queue>

struct N { int d, l, r; };
N s[15]; bool f[15];

void bfs(int r) {
    int cnt = 1; std::queue<N> q;
    q.push(s[r]);
    while(!q.empty()) {
        N t = q.front();
        if(t.l==-1 && t.r==-1) {
            if(cnt == 1) { printf("%d", t.d); ++cnt; }
            else printf(" %d", t.d);
        }
        if(t.l != -1) q.push(s[t.l]);
        if(t.r != -1) q.push(s[t.r]); q.pop();
    }
    printf("\n");
}

int main()
{
    #ifdef LOCAL
        freopen("E:\\Temp\\input.txt", "r", stdin);
        freopen("E:\\Temp\\output.txt", "w", stdout);
    #endif

    int i, n; char a, b;
    scanf("%d", &n);
    for(i=0; i<n; ++i) {
        s[i].l = s[i].r = -1;
        scanf(" %c %c", &a, &b); s[i].d = i;
        if(a != '-') { s[i].l = a-'0'; f[a-'0'] = 1; }
        if(b != '-') { s[i].r = b-'0'; f[b-'0'] = 1; }
    }

    int r = -1;
    for(i=0; i<n; ++i)
        if(!f[i]) { r = i; break; }
    bfs(r);

    return 0;
}
PAT-1086:Tree Traversals Again.
Description:

An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the keys numbered from 1 to 6) is traversed, the stack operations are: push(1); push(2); push(3); pop(); pop(); push(4); pop(); pop(); push(5); push(6); pop(); pop(). Then a unique binary tree (shown in Figure 1) can be generated from this sequence of operations. Your task is to give the postorder traversal sequence of this tree.

Input:

Each input file contains one test case. For each case, the first line contains a positive integer N (<=30) which is the total number of nodes in a tree (and hence the nodes are numbered from 1 to N). Then 2N lines follow, each describes a stack operation in the format: "Push X" where X is the index of the node being pushed onto the stack; or "Pop" meaning to pop one node from the stack.

Output:

For each test case, print the postorder traversal sequence of the corresponding tree in one line. A solution is guaranteed to exist. All the numbers must be separated by exactly one space, and there must be no extra space at the end of the line.

SampleInput:

6
Push 1
Push 2
Push 3
Pop
Pop
Push 4
Pop
Pop
Push 5
Push 6
Pop
Pop

SampleOutput:

3 4 2 6 5 1

Codes:
//#define LOCAL

#include <cstdio>
#include <stack>

#define M 50
int A[M], B[M], C[M];

void traversal(int a, int b, int c, int n) {
    if(!n) return;
    if(n == 1) { C[c] = A[a]; return; }
    int i, l, r, R;
    R = A[a], C[c+n-1] = R;
    for(i=0; i<n; ++i)
        if(B[b+i] == R) break;
    l = i, r = n-l-1;
    traversal(a+1, b, c, l);
    traversal(a+l+1, b+l+1, c+l, r);
}

int main()
{
    #ifdef LOCAL
        freopen("E:\\Temp\\input.txt", "r", stdin);
        freopen("E:\\Temp\\output.txt", "w", stdout);
    #endif

    int a, b, c, d, i, n; 
    a = b = c = i = 0;
    char s[10]; std::stack<int> S;
    scanf("%d", &n);
    for(; i<2*n; ++i) {
        scanf("%s", s);
        if(s[1] == 'u') {
            scanf("%d", &d);
            A[a++] = d; S.push(d);
        } else if(s[1] == 'o') {
            B[b++] = S.top(); S.pop();
        }
    }

    traversal(0, 0, 0, n);
    for(i=0; i<n; ++i) {
        if(i) printf(" ");
        printf("%d", C[i]);
    }
    printf("\n");

    return 0;
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 如果需要基於鍵對所需集合排序,就可以使用SortedList<TKey,TValue>類。這個類按照鍵給元素排序。這個集合中的值和鍵都可以使用任何類型。定義為鍵的自定義類型需要實現IComparer<T>介面,用於給列表中的元素排序。 使用構造函數創建一個有序列表,在用Add方法添加: var bo ...
  • LinkedList<T>是一個雙向鏈表,其元素會指向它前面和後面的元素。這樣,通過移動到下一個元素可以正向遍歷鏈表,通過移動到前一個元素可以反向遍歷鏈表。 鏈表在存儲元素時,不僅要存儲元素的值,還必須存儲每個元素的下一個元素和上一個元素的信息。這就是LinkedList<T>包含LinkedLis ...
  • 本人菜鳥一枚,以下是我在項目中遇到一些問題的解決方法。 初次接觸到.net mvc發現html的有些屬性無法實現,比如使用easyui的data-options屬性會發生以下錯誤: 遇到這種情況可以將 “-”變為下劃線 "_" 即可解決: 在定義easyui-tree的json數據實體,發現easy ...
  • 棧(Stack)和隊列是非常類似的一個容器,只是棧是一個後進先出(LIFO)的容器。 棧用Push()方法在棧中添加元素,用Pop()方法獲取最近添加的一個元素: Stack<T>與Queue<T>類(http://www.cnblogs.com/afei-24/p/6829817.html)類似, ...
  • 隊列是其元素按照先進先出(FIFO)的方式來處理的集合。 隊列使用System.Collections.Generic名稱空間中的泛型類Queue<T>實現。在內部,Queue<T>類使用T類型的數組,這類似List<T>(http://www.cnblogs.com/afei-24/p/68247 ...
  • 查看原文 本文我們來學習 Code first 在初始化資料庫時是如何決定資料庫名稱和伺服器的。 下圖展示了資料庫初始化的工作流。 由圖可知,上下文類的基本構造函數的參數可以有以下幾種方式: 1、沒有參數 2、有資料庫名 3、有連接字元串名 一、沒有參數(No Parameter) 如果上下文類的基 ...
  • 總目錄 插件目錄結構(一) Admin後臺頁面編寫(二) 前臺模板頁編寫(三) URL重寫(四) 本實例旨在以一個實際的項目中的例子來介紹如何在dtcms中製作插件,本系列文章非入門教程,部分邏輯實現一帶而過,敬請諒解。 時隔2年,再次收到本文的回覆,實在慚愧,本系列竟然終止於第二章節。不從外部找原... ...
  • 模塊:用一堆代碼實現了某個功能的代碼集合,模塊是不帶 .py 擴展的另外一個 Python 文件的文件名。 一、time & datetime模塊 二、random模塊 三、OS模塊 四、sys模塊 五、shutil模塊 六、XML處理模塊 七、configparser模塊 用於生成和修改常見配置文 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...