SlideShare une entreprise Scribd logo
1  sur  69
Binary Trees
Parts of a binary tree ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Picture of a binary tree a b c d e g h i l f j k
Size and depth ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],a b c d e f g h i j k l
Balance ,[object Object],[object Object],a b c d e f g h i j A balanced binary tree a b c d e f g h i j An unbalanced binary tree
Binary search in an array ,[object Object],2 3 5 7 11 13 17 0  1  2  3  4  5  6 Searching for 5: (0+6)/2 = 3 hi = 2; (0 + 2)/2 = 1 lo = 2; (2+2)/2=2 7 3 13 2 5 11 17 Using a binary search tree
Tree traversals ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Preorder traversal ,[object Object],[object Object],[object Object]
Inorder traversal ,[object Object],[object Object],[object Object]
Postorder traversal ,[object Object],[object Object],[object Object]
Tree traversals using “flags” ,[object Object],[object Object],preorder inorder postorder A B C D E F G A B C D E F G A B C D E F G A B D E C F G D B E A F C G D E B F G C A
Copying a binary tree ,[object Object],[object Object],[object Object]
Other traversals ,[object Object],[object Object],[object Object],[object Object],[object Object]
Tree searches ,[object Object],[object Object],L M N O P G Q H J I K F E D B C A Goal nodes
Depth-first searching ,[object Object],[object Object],[object Object],[object Object],L M N O P G Q H J I K F E D B C A
How to do depth-first searching ,[object Object],[object Object],[object Object],[object Object],[object Object]
Depth-First Search A B C D E F G A  B D E C F G Stack: Current:
Depth-First Search A B C D E F G Undiscovered Marked Finished Active B newly discovered Stack: (A, C); (A, B) Current:
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active A already marked Visited B Stack: (B, E); (B, D); (B, A) (A, C); (A, B)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active A already marked Visited B A Stack: (B, E); (B, D); (B, A) (A, C); (A, B)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active D newly discovered A Stack: (B, E); (B, D); (B, A) (A, C); (A, B)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Visited D A   B Stack: (B, E); (B, D); (B, A) (A, C); (A, B) (B, D) Marked B
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Finished D A   B Stack: (B, E); (B, D); (B, A) (A, C); (A, B)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active E newly discovered Stack: (B, E); (B, D); (B, A) (A, C); (A, B) A  B D Backtrack B
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Visited E Stack: (B, E); (B, D); (B, A) (A, C); (A, B) A  B D (B, E)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Finished E Stack: (B, E); (B, D); (B, A) (A, C); (A, B) A  B D
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (B, E); (B, D); (B, A) (A, C); (A, B) A  B D E
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (A, C); (A, B) A  B D E Backtrack B
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (A, C); (A, B) A  B D E Backtrack A Finished B C newly discovered
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) A  B D E Visited C (A, C); (A, B)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) Marked C (A, C); (A, B) F newly discovered A  B D E C
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) (A, C); (A, B) Visited F A  B D E C (F, C)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) (A, C); (A, B) Finished F A  B D E C
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) (A, C); (A, B) Backtrack C G newly discovered A  B D E C F
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) (A, C); (A, B) Marked C Visited G A  B D E C F (G, C)
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (C, G); (C, F); (C, A) (A, C); (A, B) Backtrack C Finished G A  B D E C F G
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: (A, C); (A, B) Finished C A  B D E C F G Backtrack A
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active Stack: A  B D E C F G Finished A
Depth-First Search A B C D E F G Current: Undiscovered Marked Finished Active A  B D E C F G
Breadth-first searching ,[object Object],[object Object],[object Object],[object Object],L M N O P G Q H J I K F E D B C A
How to do breadth-first searching ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Breadth-First Search A B C D E F G A  B  C  D  E  F  G Queue: Current:
Breadth-First Search A B C D E F G Queue: Current: A
Breadth-First Search A B C D E F G Queue: Current: A A
Breadth-First Search A B C D E F G Queue: Current: A A
Breadth-First Search A B C D E F G Queue: Current: B A A
Breadth-First Search A B C D E F G Queue: Current: C B A A
Breadth-First Search A B C D E F G Queue: Current: B A C B
Breadth-First Search A B C D E F G Queue: Current: B C A  B
Breadth-First Search A B C D E F G Queue: Current: D C B A  B
Breadth-First Search A B C D E F G Queue: Current: E D C B A  B
Breadth-First Search A B C D E F G Queue: Current: C E D C A  B
Breadth-First Search A B C D E F G Queue: Current: C A  B  C E D
Breadth-First Search A B C D E F G Queue: Current: C A  B  C F E D
Breadth-First Search A B C D E F G Queue: Current: C A  B  C G F E D
Breadth-First Search A B C D E F G Queue: Current: D A  B  C G F E D
Breadth-First Search A  B  C  D A B C D E F G Queue: Current: D G F E
Breadth-First Search A B C D E F G A  B  C  D Queue: Current: E G F E
Breadth-First Search A B C D E F G Queue: Current: F G A  B  C  D  E  F
Breadth-First Search A B C D E F G Queue: Current: G G A  B  C  D  E  F
Breadth-First Search A B C D E F G Queue: Current: G A  B  C  D  E  F  G
Breadth-First Search A B C D E F G A  B  C  D  E  F  G
Depth- vs. breadth-first searching ,[object Object],[object Object],[object Object],[object Object],[object Object]
findMin/ findMax ,[object Object],[object Object],[object Object],[object Object]
insert ,[object Object],[object Object],[object Object],[object Object]
delete ,[object Object],[object Object]
Delete cont… ,[object Object],[object Object],[object Object],[object Object],[object Object]
Delete cont… ,[object Object],[object Object],[object Object],[object Object],[object Object]
Thank you for listening!

Contenu connexe

Tendances

Tendances (20)

Doubly Linked List
Doubly Linked ListDoubly Linked List
Doubly Linked List
 
Hashing
HashingHashing
Hashing
 
BINARY TREE REPRESENTATION.ppt
BINARY TREE REPRESENTATION.pptBINARY TREE REPRESENTATION.ppt
BINARY TREE REPRESENTATION.ppt
 
Tree - Data Structure
Tree - Data StructureTree - Data Structure
Tree - Data Structure
 
Graph traversals in Data Structures
Graph traversals in Data StructuresGraph traversals in Data Structures
Graph traversals in Data Structures
 
Hashing Technique In Data Structures
Hashing Technique In Data StructuresHashing Technique In Data Structures
Hashing Technique In Data Structures
 
Data Structures : hashing (1)
Data Structures : hashing (1)Data Structures : hashing (1)
Data Structures : hashing (1)
 
Data structure tries
Data structure triesData structure tries
Data structure tries
 
Binary tree
Binary  treeBinary  tree
Binary tree
 
Binary search tree(bst)
Binary search tree(bst)Binary search tree(bst)
Binary search tree(bst)
 
Breadth first search and depth first search
Breadth first search and  depth first searchBreadth first search and  depth first search
Breadth first search and depth first search
 
AD3251-Data Structures Design-Notes-Searching-Hashing.pdf
AD3251-Data Structures  Design-Notes-Searching-Hashing.pdfAD3251-Data Structures  Design-Notes-Searching-Hashing.pdf
AD3251-Data Structures Design-Notes-Searching-Hashing.pdf
 
Breadth First Search & Depth First Search
Breadth First Search & Depth First SearchBreadth First Search & Depth First Search
Breadth First Search & Depth First Search
 
Linked list implementation of Queue
Linked list implementation of QueueLinked list implementation of Queue
Linked list implementation of Queue
 
linked list in data structure
linked list in data structure linked list in data structure
linked list in data structure
 
Hashing In Data Structure
Hashing In Data Structure Hashing In Data Structure
Hashing In Data Structure
 
Doubly linked list (animated)
Doubly linked list (animated)Doubly linked list (animated)
Doubly linked list (animated)
 
Single linked list
Single linked listSingle linked list
Single linked list
 
Binary Tree in Data Structure
Binary Tree in Data StructureBinary Tree in Data Structure
Binary Tree in Data Structure
 
Hash table
Hash tableHash table
Hash table
 

Similaire à (Binary tree)

Similaire à (Binary tree) (20)

Bfs & dfs application
Bfs & dfs applicationBfs & dfs application
Bfs & dfs application
 
Breadth First Search (BFS)
Breadth First Search (BFS)Breadth First Search (BFS)
Breadth First Search (BFS)
 
Binary trees
Binary treesBinary trees
Binary trees
 
Uniformed tree searching
Uniformed tree searching Uniformed tree searching
Uniformed tree searching
 
Data structures algoritghm for binary tree method.ppt
Data structures algoritghm for binary tree method.pptData structures algoritghm for binary tree method.ppt
Data structures algoritghm for binary tree method.ppt
 
ISA23 .pptx
ISA23 .pptxISA23 .pptx
ISA23 .pptx
 
Lec216
Lec216Lec216
Lec216
 
bfs[1].pptx
bfs[1].pptxbfs[1].pptx
bfs[1].pptx
 
Lec21
Lec21Lec21
Lec21
 
DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURES
 
bca data structure
bca data structurebca data structure
bca data structure
 
Final slide4 (bsc csit) chapter 4
Final slide4 (bsc csit) chapter 4Final slide4 (bsc csit) chapter 4
Final slide4 (bsc csit) chapter 4
 
Unit 4.2(graphs)
Unit 4.2(graphs)Unit 4.2(graphs)
Unit 4.2(graphs)
 
09 binary-trees
09 binary-trees09 binary-trees
09 binary-trees
 
ai (1) (1).pptx
ai (1) (1).pptxai (1) (1).pptx
ai (1) (1).pptx
 
Presentasi Eclat
Presentasi EclatPresentasi Eclat
Presentasi Eclat
 
Algorithm
AlgorithmAlgorithm
Algorithm
 
Topic18BinaryTrees.pptx
Topic18BinaryTrees.pptxTopic18BinaryTrees.pptx
Topic18BinaryTrees.pptx
 
Data Structure (Tree)
Data Structure (Tree)Data Structure (Tree)
Data Structure (Tree)
 
DS MCQS.pptx
DS MCQS.pptxDS MCQS.pptx
DS MCQS.pptx
 

Plus de almario1988

Module 1.4 internal analysis
Module 1.4    internal analysisModule 1.4    internal analysis
Module 1.4 internal analysisalmario1988
 
Module 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurshipModule 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurshipalmario1988
 
Module 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurshipModule 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurshipalmario1988
 
Power point2007 chapter_3
Power point2007 chapter_3Power point2007 chapter_3
Power point2007 chapter_3almario1988
 
Power point2007 chapter_3
Power point2007 chapter_3Power point2007 chapter_3
Power point2007 chapter_3almario1988
 
Power point2007 chapter_2
Power point2007 chapter_2Power point2007 chapter_2
Power point2007 chapter_2almario1988
 
Power point2007 chapter_1
Power point2007 chapter_1Power point2007 chapter_1
Power point2007 chapter_1almario1988
 
Ethics for IT Professionals and IT Users
Ethics for IT Professionals and IT UsersEthics for IT Professionals and IT Users
Ethics for IT Professionals and IT Usersalmario1988
 

Plus de almario1988 (20)

Module 1.4 internal analysis
Module 1.4    internal analysisModule 1.4    internal analysis
Module 1.4 internal analysis
 
Module 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurshipModule 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurship
 
Module 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurshipModule 1.2 basics of technopreneurship
Module 1.2 basics of technopreneurship
 
Ppt lesson 17
Ppt lesson 17Ppt lesson 17
Ppt lesson 17
 
Intro ch 09_b
Intro ch 09_bIntro ch 09_b
Intro ch 09_b
 
Intro ch 08_b
Intro ch 08_bIntro ch 08_b
Intro ch 08_b
 
Intro ch 04_b
Intro ch 04_bIntro ch 04_b
Intro ch 04_b
 
Chap01mc
Chap01mcChap01mc
Chap01mc
 
Power point2007 chapter_3
Power point2007 chapter_3Power point2007 chapter_3
Power point2007 chapter_3
 
Intro ch 04_b
Intro ch 04_bIntro ch 04_b
Intro ch 04_b
 
Power point2007 chapter_3
Power point2007 chapter_3Power point2007 chapter_3
Power point2007 chapter_3
 
Power point2007 chapter_2
Power point2007 chapter_2Power point2007 chapter_2
Power point2007 chapter_2
 
Power point2007 chapter_1
Power point2007 chapter_1Power point2007 chapter_1
Power point2007 chapter_1
 
Ppt lesson 05
Ppt lesson 05Ppt lesson 05
Ppt lesson 05
 
Intro ch 04_a
Intro ch 04_aIntro ch 04_a
Intro ch 04_a
 
Ecom
EcomEcom
Ecom
 
Intro ch 05_a
Intro ch 05_aIntro ch 05_a
Intro ch 05_a
 
Intro ch 10_a
Intro ch 10_aIntro ch 10_a
Intro ch 10_a
 
Intro ch 02_b
Intro ch 02_bIntro ch 02_b
Intro ch 02_b
 
Ethics for IT Professionals and IT Users
Ethics for IT Professionals and IT UsersEthics for IT Professionals and IT Users
Ethics for IT Professionals and IT Users
 

Dernier

Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 

Dernier (20)

Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 

(Binary tree)