SlideShare ist ein Scribd-Unternehmen logo
1 von 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!

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

SEARCHING AND SORTING ALGORITHMS
SEARCHING AND SORTING ALGORITHMSSEARCHING AND SORTING ALGORITHMS
SEARCHING AND SORTING ALGORITHMS
 
Terminology of tree
Terminology of treeTerminology of tree
Terminology of tree
 
Binary search tree(bst)
Binary search tree(bst)Binary search tree(bst)
Binary search tree(bst)
 
Binary tree
Binary treeBinary tree
Binary tree
 
Searching & Sorting Algorithms
Searching & Sorting AlgorithmsSearching & Sorting Algorithms
Searching & Sorting Algorithms
 
Heaps & priority queues
Heaps & priority queuesHeaps & priority queues
Heaps & priority queues
 
Tree in data structure
Tree in data structureTree in data structure
Tree in data structure
 
Sorting Algorithms
Sorting AlgorithmsSorting Algorithms
Sorting Algorithms
 
Binary Tree in Data Structure
Binary Tree in Data StructureBinary Tree in Data Structure
Binary Tree in Data Structure
 
Tree-In Data Structure
Tree-In Data StructureTree-In Data Structure
Tree-In Data Structure
 
Lec 17 heap data structure
Lec 17 heap data structureLec 17 heap data structure
Lec 17 heap data structure
 
Data Structures & Recursion-Introduction.pdf
Data Structures & Recursion-Introduction.pdfData Structures & Recursion-Introduction.pdf
Data Structures & Recursion-Introduction.pdf
 
AVL Tree
AVL TreeAVL Tree
AVL Tree
 
Linked list in Data Structure and Algorithm
Linked list in Data Structure and Algorithm Linked list in Data Structure and Algorithm
Linked list in Data Structure and Algorithm
 
Binary search tree in data structures
Binary search tree in  data structuresBinary search tree in  data structures
Binary search tree in data structures
 
Types of Tree in Data Structure in C++
Types of Tree in Data Structure in C++Types of Tree in Data Structure in C++
Types of Tree in Data Structure in C++
 
Deque and its applications
Deque and its applicationsDeque and its applications
Deque and its applications
 
Red black tree
Red black treeRed black tree
Red black tree
 
Trees and Graphs in data structures and Algorithms
Trees and Graphs in data structures and AlgorithmsTrees and Graphs in data structures and Algorithms
Trees and Graphs in data structures and Algorithms
 
Linked List
Linked ListLinked List
Linked List
 

Ähnlich wie (Binary tree)

Ähnlich wie (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
 
Binary Tree Traversal
Binary Tree TraversalBinary Tree Traversal
Binary Tree Traversal
 
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)
 

Mehr von 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
 

Mehr von 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
 

Kürzlich hochgeladen

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
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
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Kürzlich hochgeladen (20)

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
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
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

(Binary tree)