ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
?     ?
 pig.sh
120816
?   Abstract
?   Construction
?   Implementation
?   Reference
?   Alias: position tree, PAT tree
?   Important people
    o Weiner (1973)    first introduction
    o McCreight (1976) simplified the construction
    o Ukkonen (1995) fastest construction algorithm
    o Farach (1997)    optimal construction algorithm for all alphabets
?   Trie
?   string: S, length: N
?   Suffix tree of S:
    o the paths from the root to the leaves have a one-to-one relationship
        with the suffixes of S.
    o edges spell non-empty strings.
    o all internal nodes (except perhaps the root) have at least two
        children
    -- reference. Wikipedia. Suffix tree
?   String S = {peeper$}; Suffix(S,0) = {peeper$}
          ROOT
     p

     e

      e

     p

     e

      r
          peeper

            $
?   String S = {peeper$}; Suffix(S,1) = {eeper$}
          ROOT
     p                 e

     e                       e

      e                      p

     p                       e

     e                       r
                                 eeper
      r
          peeper                  $

            $
?   String S = {peeper$}; Suffix(S,2) = {eper$}
          ROOT
     p                 e

     e                       e           p

      e                      p           e

     p                       e           r
                                             eper
     e                       r
                                 eeper        $
      r
          peeper                  $

            $
?   String S = {peeper$}; Suffix(S,3) = {per$}
          ROOT
     p                     e

     e                         e           p

      e            r           p           e
                       per
     p                         e           r
                       $                       eper
     e                         r
                                   eeper        $
      r
          peeper                    $

            $
?   String S = {peeper$}; Suffix(S,4) = {er$}
          ROOT
     p                     e

     e                         e           p          r
                                                          er
      e            r           p           e
                       per                                $
     p                         e           r
                       $                       eper
     e                         r
                                   eeper        $
      r
          peeper                    $

            $
?   String S = {peeper$}; Suffix(S,5) = {r$}
          ROOT
                                                          r
     p                     e
                                                                   r
     e                         e           p          r
                                                              er   $
      e            r           p           e
                       per                                    $
     p                         e           r
                       $                       eper
     e                         r
                                   eeper        $
      r
          peeper                    $

            $
?   However, this isn¡¯t a suffix tree. It¡¯s a suffix trie.
          ROOT
                                                           r
      p                     e
                                                                    r
      e                         e           p          r
                                                               er   $
      e            r            p           e
                       per                                     $
      p                         e           r
                        $                       eper
      e                         r
                                    eeper        $
      r
          peeper                     $

            $
?   Suffix trie can be compressed to suffix tree.
          ROOT
                                                          r
     p                     e
                                                                   r
     e                         e           p          r
                                                              er   $
      e            r           p           e
                       per                                    $
     p                         e           r
                       $                       eper
     e                         r
                                   eeper        $
      r
          peeper                    $

            $
?   The suffix tree of {peeper$} is completed.
           ROOT
                                                                r
     pe                     e
                                                                         r
    eper            r           eper           per          r
           peeper       per            eeper         eper           er   $

             $          $               $                           $
                                                      $
?   There are many ways to implement suffix tree.
    o Sibling lists / unsorted arrays
    o Hash maps
    o Balanced search tree
    o Sorted array
    o Hash maps + sibling lists
Lookup   Insertion   Traversal
 Sibling lists /
unsorted arrays
  Hash maps
Balanced search
      tree
 Sorted arrays
 Hash maps +
  sibling lists
?   How to implement the suffix tree/trie ¨C child && sibling
        ROOT

         -85                    0                              72

          0                     0          -85         72

          0          72         -85         0

         -85                    0          72

          0                     72

         72
?   struct node{
      struct node *child, *sibling;
      int c_num, s_num;
      int slope;
      int node_type;
      char *obslist_file;
    }
?   node_type is used to indicate what the node is.
    (root / inter-node / leaf / terminal)
?   obslist_file is used for external memory.
    The data that seldom queried will be recorded in this file.
?   If the trie is too big, how can I do?
    o If trie is constructed by C-S-Link, every subtree is a binary tree.
    o Record the in-order and pre-/post- order sequence.
    o Use two sequence to reconstruct, if we want to query the subtree.
?   Wikipedia ¨C suffix tree
    http://en.wikipedia.org/wiki/Suffix_tree
?   Data Structures, Algorithms, & Applications in Java Suffix Trees
    Copyright 1999 Sartaj Sahni
    http://www.cise.ufl.edu/~sahni/dsaaj/enrich/c16/suffix.htm#tree
?   Websites for suffix tree/trie
     o   http://blog.csdn.net/ljsspace/article/details/6581850
     o   http://www.allisons.org/ll/AlgDS/Tree/Suffix/
     o   http://blog.csdn.net/TsengYuen/article/details/4815921
     o   http://www.cppblog.com/yuyang7/archive/2009/03/29/78252.html

More Related Content

What's hot (20)

Shift reduce parser
Shift reduce parserShift reduce parser
Shift reduce parser
TEJVEER SINGH
?
Introduction to Binary Tree and Conersion of General tree to Binary Tree
Introduction to Binary Tree  and Conersion of General tree to Binary TreeIntroduction to Binary Tree  and Conersion of General tree to Binary Tree
Introduction to Binary Tree and Conersion of General tree to Binary Tree
SwarupaDeshpande4
?
Trie Data Structure
Trie Data Structure Trie Data Structure
Trie Data Structure
Hitesh Mohapatra
?
Java Notes by C. Sreedhar, GPREC
Java Notes by C. Sreedhar, GPRECJava Notes by C. Sreedhar, GPREC
Java Notes by C. Sreedhar, GPREC
Sreedhar Chowdam
?
Linked List
Linked ListLinked List
Linked List
RaaviKapoor
?
Merge sort algorithm power point presentation
Merge sort algorithm power point presentationMerge sort algorithm power point presentation
Merge sort algorithm power point presentation
University of Science and Technology Chitttagong
?
Perl Introduction
Perl IntroductionPerl Introduction
Perl Introduction
Marcos Rebelo
?
Radix and Shell sort
Radix and Shell sortRadix and Shell sort
Radix and Shell sort
hannatamayao
?
Persistent Search Trees
Persistent Search TreesPersistent Search Trees
Persistent Search Trees
? Olivier Pirson ¡ª OPi ?????? ? ??? ???
?
Concurrent transactions
Concurrent transactionsConcurrent transactions
Concurrent transactions
Sajan Sahu
?
Trees data structure
Trees data structureTrees data structure
Trees data structure
Sumit Gupta
?
Basic data structures in python
Basic data structures in pythonBasic data structures in python
Basic data structures in python
Lifna C.S
?
Golang - Overview of Go (golang) Language
Golang - Overview of Go (golang) LanguageGolang - Overview of Go (golang) Language
Golang - Overview of Go (golang) Language
Aniruddha Chakrabarti
?
Top Down Parsing, Predictive Parsing
Top Down Parsing, Predictive ParsingTop Down Parsing, Predictive Parsing
Top Down Parsing, Predictive Parsing
Tanzeela_Hussain
?
B and B+ tree
B and B+ treeB and B+ tree
B and B+ tree
Ashish Arun
?
Software architecture
Software architectureSoftware architecture
Software architecture
Foyzul Karim
?
Sets and disjoint sets union123
Sets and disjoint sets union123Sets and disjoint sets union123
Sets and disjoint sets union123
Ankita Goyal
?
Topological Sort Algorithm.pptx
Topological Sort Algorithm.pptxTopological Sort Algorithm.pptx
Topological Sort Algorithm.pptx
MuhammadShafi89
?
Asymptotic Notation
Asymptotic NotationAsymptotic Notation
Asymptotic Notation
Protap Mondal
?
Lexical Analysis - Compiler design
Lexical Analysis - Compiler design Lexical Analysis - Compiler design
Lexical Analysis - Compiler design
Aman Sharma
?

Viewers also liked (14)

Packet forwarding in wan.46
Packet  forwarding in wan.46Packet  forwarding in wan.46
Packet forwarding in wan.46
myrajendra
?
Trie tree
Trie treeTrie tree
Trie tree
Shakil Ahmed
?
Data structure tries
Data structure triesData structure tries
Data structure tries
Md. Naim khan
?
Introduction to statistics ii
Introduction to statistics iiIntroduction to statistics ii
Introduction to statistics ii
Strand Life Sciences Pvt Ltd
?
Lec18
Lec18Lec18
Lec18
Nikhil Chilwant
?
TRIES_data_structure
TRIES_data_structureTRIES_data_structure
TRIES_data_structure
ddewithaman10
?
Application of tries
Application of triesApplication of tries
Application of tries
Tech_MX
?
Trie Data Structure
Trie Data StructureTrie Data Structure
Trie Data Structure
??????? ???????
?
Fundamentals
FundamentalsFundamentals
Fundamentals
myrajendra
?
Tries - Tree Based Structures for Strings
Tries - Tree Based Structures for StringsTries - Tree Based Structures for Strings
Tries - Tree Based Structures for Strings
Amrinder Arora
?
Basic Packet Forwarding in NS2
Basic Packet Forwarding in NS2Basic Packet Forwarding in NS2
Basic Packet Forwarding in NS2
Teerawat Issariyakul
?
Digital Search Tree
Digital Search TreeDigital Search Tree
Digital Search Tree
East West University
?
Multi ways trees
Multi ways treesMulti ways trees
Multi ways trees
SHEETAL WAGHMARE
?
Cis82 e2-1-packet forwarding
Cis82 e2-1-packet forwardingCis82 e2-1-packet forwarding
Cis82 e2-1-packet forwarding
Harjanto Handi Kusumo
?

Recently uploaded (20)

Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
?
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
?
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
?
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
jackalen173
?
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
?
The Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App DevelopmentThe Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App Development
7Pillars
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
?
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdfMastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Bachir Benyammi
?
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
?
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
DianaGray10
?
AI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AIAI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AI
Kris Verlaenen
?
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AIUiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
DianaGray10
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
?
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
?
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
?
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptxPackaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
mohayyudin7826
?
Dragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN NB-IoT LTE cat.M1ÉÌÆ·¥ê¥¹¥È
Dragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN  NB-IoT  LTE cat.M1ÉÌÆ·¥ê¥¹¥ÈDragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN  NB-IoT  LTE cat.M1ÉÌÆ·¥ê¥¹¥È
Dragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN NB-IoT LTE cat.M1ÉÌÆ·¥ê¥¹¥È
CRI Japan, Inc.
?
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
?
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
?
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
?
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
?
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
jackalen173
?
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
?
The Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App DevelopmentThe Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App Development
7Pillars
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
?
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdfMastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Bachir Benyammi
?
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
?
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
DianaGray10
?
AI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AIAI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AI
Kris Verlaenen
?
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AIUiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
DianaGray10
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
?
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
?
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
?
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptxPackaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
Packaging your App for AppExchange ¨C Managed Vs Unmanaged.pptx
mohayyudin7826
?
Dragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN NB-IoT LTE cat.M1ÉÌÆ·¥ê¥¹¥È
Dragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN  NB-IoT  LTE cat.M1ÉÌÆ·¥ê¥¹¥ÈDragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN  NB-IoT  LTE cat.M1ÉÌÆ·¥ê¥¹¥È
Dragino¥×¥í¥À¥¯¥È¥«¥¿¥í¥° LoRaWAN NB-IoT LTE cat.M1ÉÌÆ·¥ê¥¹¥È
CRI Japan, Inc.
?
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
?

Introduction of suffix tree

  • 1. ? ? pig.sh 120816
  • 2. ? Abstract ? Construction ? Implementation ? Reference
  • 3. ? Alias: position tree, PAT tree ? Important people o Weiner (1973) first introduction o McCreight (1976) simplified the construction o Ukkonen (1995) fastest construction algorithm o Farach (1997) optimal construction algorithm for all alphabets
  • 4. ? Trie ? string: S, length: N ? Suffix tree of S: o the paths from the root to the leaves have a one-to-one relationship with the suffixes of S. o edges spell non-empty strings. o all internal nodes (except perhaps the root) have at least two children -- reference. Wikipedia. Suffix tree
  • 5. ? String S = {peeper$}; Suffix(S,0) = {peeper$} ROOT p e e p e r peeper $
  • 6. ? String S = {peeper$}; Suffix(S,1) = {eeper$} ROOT p e e e e p p e e r eeper r peeper $ $
  • 7. ? String S = {peeper$}; Suffix(S,2) = {eper$} ROOT p e e e p e p e p e r eper e r eeper $ r peeper $ $
  • 8. ? String S = {peeper$}; Suffix(S,3) = {per$} ROOT p e e e p e r p e per p e r $ eper e r eeper $ r peeper $ $
  • 9. ? String S = {peeper$}; Suffix(S,4) = {er$} ROOT p e e e p r er e r p e per $ p e r $ eper e r eeper $ r peeper $ $
  • 10. ? String S = {peeper$}; Suffix(S,5) = {r$} ROOT r p e r e e p r er $ e r p e per $ p e r $ eper e r eeper $ r peeper $ $
  • 11. ? However, this isn¡¯t a suffix tree. It¡¯s a suffix trie. ROOT r p e r e e p r er $ e r p e per $ p e r $ eper e r eeper $ r peeper $ $
  • 12. ? Suffix trie can be compressed to suffix tree. ROOT r p e r e e p r er $ e r p e per $ p e r $ eper e r eeper $ r peeper $ $
  • 13. ? The suffix tree of {peeper$} is completed. ROOT r pe e r eper r eper per r peeper per eeper eper er $ $ $ $ $ $
  • 14. ? There are many ways to implement suffix tree. o Sibling lists / unsorted arrays o Hash maps o Balanced search tree o Sorted array o Hash maps + sibling lists
  • 15. Lookup Insertion Traversal Sibling lists / unsorted arrays Hash maps Balanced search tree Sorted arrays Hash maps + sibling lists
  • 16. ? How to implement the suffix tree/trie ¨C child && sibling ROOT -85 0 72 0 0 -85 72 0 72 -85 0 -85 0 72 0 72 72
  • 17. ? struct node{ struct node *child, *sibling; int c_num, s_num; int slope; int node_type; char *obslist_file; } ? node_type is used to indicate what the node is. (root / inter-node / leaf / terminal) ? obslist_file is used for external memory. The data that seldom queried will be recorded in this file.
  • 18. ? If the trie is too big, how can I do? o If trie is constructed by C-S-Link, every subtree is a binary tree. o Record the in-order and pre-/post- order sequence. o Use two sequence to reconstruct, if we want to query the subtree.
  • 19. ? Wikipedia ¨C suffix tree http://en.wikipedia.org/wiki/Suffix_tree ? Data Structures, Algorithms, & Applications in Java Suffix Trees Copyright 1999 Sartaj Sahni http://www.cise.ufl.edu/~sahni/dsaaj/enrich/c16/suffix.htm#tree ? Websites for suffix tree/trie o http://blog.csdn.net/ljsspace/article/details/6581850 o http://www.allisons.org/ll/AlgDS/Tree/Suffix/ o http://blog.csdn.net/TsengYuen/article/details/4815921 o http://www.cppblog.com/yuyang7/archive/2009/03/29/78252.html