SlideShare a Scribd company logo
1 of 81
Download to read offline
ALGORITHM
ALGORITHM
Array
LIST
Circular
Etc..intro
Pointer
Doubly
ALGORITHM
LIST INTRO
What is List?
LIST INTRO
Sequential
ALGORITHM
학교 게시판 공지사항 리스트
LIST INTRO
ALGORITHM
15773
15772
15771
15770
…
15765
15764
List Model
LIST INTRO
ALGORITHM
15773
제거
15771
15770
…
15765
15764
15773
15771
15770
…
15765
15764
비어 있음
Delete Issue
LIST INTRO
ALGORITHM
Insert Issue
15773
15772
15771
15770
…
15765
15764
15774
15773
15772
15771
…
15765
15764
Insert front
15773
15772
15771
15770
…
15765
15764
15773
15772
15771
15770
…
15766
15765
Insert specific position
LIST INTRO
ALGORITHM
createList
리스트 생성
deleteList
리스트 삭제
isFull
리스트의 여유 공간이 있는가?
addElement
리스트 내 특정 위치에 원소 추가
removeElement
리스트 내 특정 위치의 원소 제거
clearList
리스트 내 모든 원소 제거
getListLength
리스트 내 원소의 수
getElement
리스트 내 특정 위치의 원소
Total Issue
LIST INTRO
ALGORITHM
1 2 3 4
Two Kinds of List
1 2 3 4 5
0 1 2 3 4
6
5
LIST INTRO
ALGORITHM
Array List
1 2 3 4 5
0 1 2 3 4
6
5
LIST ARRAY LIST
ALGORITHM
최대 원소 개수
(maxElementCount)
현재 원소 개수
(CurrentElementCount)
원소 배열 포인터
(pElement)
ArrayList
data data data data …
0 1 2 3 …
data
(maxElementCount – 1)
원소
(data)
ArrayListNode
Two Structures
LIST ARRAY LIST
ALGORITHM
data data … data
0 1 …
curElementCount – 1
원소 추가 가능
Insert Range
LIST ARRAY LIST
ALGORITHM
Push and Insert
LIST ARRAY LIST
data 1 2 3 4
curElementCount – 1
position position + 1
ALGORITHM
Push and Insert
LIST ARRAY LIST
data 1 2 3 4 4
curElementCount – 1
position position + 1
ALGORITHM
Push and Insert
LIST ARRAY LIST
data 1 2 3 3 4
curElementCount – 1
position position + 1
ALGORITHM
Push and Insert
LIST ARRAY LIST
data 1 2 2 3 4
curElementCount – 1
position position + 1
ALGORITHM
Push and Insert
LIST ARRAY LIST
data 1 1 2 3 4
curElementCount – 1
position position + 1
ALGORITHM
Push and Insert
LIST ARRAY LIST
data 1 1 2 3 4
new
curElementCount – 1
ALGORITHM
Delete and Pull
LIST ARRAY LIST
data 0 1 2 3 4
1 curElementCount – 1
position position + 1
ALGORITHM
Delete and Pull
LIST ARRAY LIST
data 0 2 2 3 4
curElementCount – 1
position position + 1
ALGORITHM
1
Delete and Pull
LIST ARRAY LIST
data 0 2 3 3 4
curElementCount – 1
position position + 1
ALGORITHM
1
Delete and Pull
LIST ARRAY LIST
data 0 2 3 4 4
curElementCount – 1
position position + 1
ALGORITHM
1
Delete and Pull
LIST ARRAY LIST
data 0 2 3 4
curElementCount – 1
position position + 1
ALGORITHM
1
Delete and Pull
LIST ARRAY LIST
data 0 2 3 4
curElementCount – 1
position position + 1
ALGORITHM
1
return
Linked List
1 2 3 4
LIST LINKED LIST
ALGORITHM
LIST LINKED LIST
Linked List Node
자료(Data) 링크(Link)
ALGORITHM
Various Linked List
LIST LINKED LIST
Linked List
Circular List
Doubly Linked List
ALGORITHM
Linked List
LIST LINKED LIST
Linked List
ALGORITHM
Two Structures
LIST LINKED LIST
현재 원소 개수
(CurrentElementCount)
LinkedList
data
pLink
Header Node
data
pLink
ListNode
ListNode
ALGORITHM
LIST LINKED LIST
Insert Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position
…
data
pLink
newNode
ALGORITHM
LIST LINKED LIST
Insert Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position
…
data
pLink
newNode
ALGORITHM
LIST LINKED LIST
Insert Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position
…
data
pLink
newNode
ALGORITHM
LIST LINKED LIST
Delete Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position+1
…
data
pLink
position
ALGORITHM
LIST LINKED LIST
Delete Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position+1
…
data
pLink
position
ALGORITHM
LIST LINKED LIST
Delete Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position+1
…
data
pLink
position
ALGORITHM
NULL
LIST LINKED LIST
Delete Node
LinkedList
data
pLink
Header Node
data
pLink
position-1
data
pLink
position+1
…
data
pLink
position
ALGORITHM
NULL
return
Circular List
LIST CIRCULAR LIST
Circular List
ALGORITHM
Two Structures
LIST CIRCULAR LIST
현재 원소 개수
(CurrentElementCount)
CircularList
pLink
data
pLink
ListNode
data
pLink
ListNode
…
ALGORITHM
Insert Issue
LIST CIRCULAR LIST
Case 1-1 Case 1-2
curElementCount 0?
yes
No
Case 2
First Insert?
yes
No
ALGORITHM
Insert case 1-1
LIST CIRCULAR LIST
CircularList
pLink
NULL
pLink
ListNode
ALGORITHM
Insert case 1-1
LIST CIRCULAR LIST
CircularList
pLink
NULL
pLink
ListNode
ALGORITHM
Insert case 1-1
LIST CIRCULAR LIST
CircularList
pLink
NULL
pLink
ListNode
ALGORITHM
CircularList
pLink
pLink
newNode
pLink
first
pLink
last
…
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
CircularList
pLink
pLink
newNode
pLink
first
pLink
last
…
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
CircularList
pLink
pLink
newNode
pLink
first
pLink
last
…
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
CircularList
pLink
pLink
newNode
pLink
first
pLink
last
…
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
CircularList
pLink
pLink
newNode
pLink
first
pLink
last
…
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
CircularList
pLink pLink
first
pLink
position-1
pLink
position
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
…
pLink
newNode
CircularList
pLink pLink
first
pLink
position-1
pLink
position
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
…
pLink
newNode
CircularList
pLink pLink
first
pLink
position-1
pLink
position
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
…
pLink
newNode
CircularList
pLink pLink
first
pLink
position-1
pLink
position
Insert case 1-2
ALGORITHM
LIST CIRCULAR LIST
…
pLink
newNode
Delete Issue
ALGORITHM
LIST CIRCULAR LIST
Case 1-1 Case 1-2 Case 2
First Node Delete?
curElementCount 1?
yes
yes
No
No
CircularList
pLink
Delete case 1-1
ALGORITHM
LIST CIRCULAR LIST
pLink
ListNode
NULL
CircularList
pLink
Delete case 1-1
ALGORITHM
LIST CIRCULAR LIST
pLink
ListNode
NULL
CircularList
pLink
Delete case 1-1
ALGORITHM
LIST CIRCULAR LIST
pLink
ListNode
NULL
return
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-2
CircularList
pLink pLink
first
pLink
second
pLink
last
…
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-2
CircularList
pLink pLink
first
pLink
second
pLink
last
…
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-2
CircularList
pLink pLink
first
pLink
second
pLink
last
…
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-2
CircularList
pLink pLink
first
pLink
second
pLink
last
…
NULL
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-2
CircularList
pLink pLink
first
pLink
second
pLink
last
…
NULL
return
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-3
CircularList
pLink pLink
position-1
pLink
position
pLink
position+1
……
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-3
CircularList
pLink pLink
position-1
pLink
position
pLink
position+1
……
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-3
CircularList
pLink pLink
position-1
pLink
position
pLink
position+1
……
NULL
ALGORITHM
LIST CIRCULAR LIST
Delete Case 1-3
CircularList
pLink pLink
position-1
pLink
position
pLink
position+1
……
NULL
return
Doubly Linked List
ALGORITHM
LIST Doubly Linked List
Doubly Linked List
Doubly Linked List Node
자료(Data)
오른쪽 링크
(Right Link)
왼쪽 링크
(Left Link)
ALGORITHM
LIST Doubly Linked List
Doubly Linked List
DoublyList
data
pRLink
Header Node
pLLink
ALGORITHM
LIST Doubly Linked List
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
newNode
Insert Node
pRLink
position
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
newNode
Insert Node
pRLink
position
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
newNode
Insert Node
pRLink
position
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
newNode
Insert Node
pRLink
position
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
newNode
Insert Node
pRLink
position
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
newNode
Insert Node
pRLink
position
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
position
pRLink
position+1
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
Delete Node
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
position
pRLink
position+1
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
Delete Node
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
position
pRLink
position+1
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
Delete Node
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
position
pRLink
position+1
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
Delete Node
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
position
pRLink
position+1
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
Delete Node
NULL
LinkedList
data
pRLink
Header Node
pRLink
position-1
pRLink
position
pRLink
position+1
pLLink
pLLink pLLink
pLLink
ALGORITHM
LIST Doubly Linked List
…
…
pRLink
last
pLLink
…
…
Delete Node
NULL
return
ALGORITHM
LIST END
THANK YOU

More Related Content

What's hot

What's hot (12)

1. 6 doubly linked list
1. 6 doubly linked list1. 6 doubly linked list
1. 6 doubly linked list
 
Sorting
SortingSorting
Sorting
 
It elective cs366 barizo radix.docx
It elective cs366 barizo radix.docxIt elective cs366 barizo radix.docx
It elective cs366 barizo radix.docx
 
1. 5 Circular singly linked list
1. 5 Circular singly linked list1. 5 Circular singly linked list
1. 5 Circular singly linked list
 
Circular linked list
Circular linked list Circular linked list
Circular linked list
 
Quick Sort
Quick SortQuick Sort
Quick Sort
 
Bubblesort Algorithm
Bubblesort AlgorithmBubblesort Algorithm
Bubblesort Algorithm
 
Sorting algorithms
Sorting algorithmsSorting algorithms
Sorting algorithms
 
LEC3-DS ALGO(updated).pdf
LEC3-DS  ALGO(updated).pdfLEC3-DS  ALGO(updated).pdf
LEC3-DS ALGO(updated).pdf
 
Quicksort Algorithm..simply defined through animations..!!
Quicksort Algorithm..simply defined through animations..!!Quicksort Algorithm..simply defined through animations..!!
Quicksort Algorithm..simply defined through animations..!!
 
Insertion Sorting
Insertion SortingInsertion Sorting
Insertion Sorting
 
Insertion Sort, Quick Sort And Their complexity
Insertion Sort, Quick Sort And Their complexityInsertion Sort, Quick Sort And Their complexity
Insertion Sort, Quick Sort And Their complexity
 

Similar to Intersection Study - Algorithm[List]

Data Structures: Stacks (Part 1)
Data Structures: Stacks (Part 1)Data Structures: Stacks (Part 1)
Data Structures: Stacks (Part 1)
Ramachandra Adiga G
 
computer notes - Data Structures - 32
computer notes - Data Structures - 32computer notes - Data Structures - 32
computer notes - Data Structures - 32
ecomputernotes
 
ch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPT
ch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPTch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPT
ch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPT
FutureTechnologies3
 
Write a JAVA LinkedListRec class that has the following methods siz.pdf
Write a JAVA LinkedListRec class that has the following methods siz.pdfWrite a JAVA LinkedListRec class that has the following methods siz.pdf
Write a JAVA LinkedListRec class that has the following methods siz.pdf
info785431
 

Similar to Intersection Study - Algorithm[List] (20)

Data Structure -List Stack Queue
Data Structure -List Stack QueueData Structure -List Stack Queue
Data Structure -List Stack Queue
 
Computer notes - Binary Search
Computer notes - Binary SearchComputer notes - Binary Search
Computer notes - Binary Search
 
Data Structures: Stacks (Part 1)
Data Structures: Stacks (Part 1)Data Structures: Stacks (Part 1)
Data Structures: Stacks (Part 1)
 
computer notes - Data Structures - 32
computer notes - Data Structures - 32computer notes - Data Structures - 32
computer notes - Data Structures - 32
 
Bca ii dfs u-2 linklist,stack,queue
Bca ii  dfs u-2 linklist,stack,queueBca ii  dfs u-2 linklist,stack,queue
Bca ii dfs u-2 linklist,stack,queue
 
ch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPT
ch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPTch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPT
ch5-bottomupparser_jfdrhgfrfyyssf-gfrrt.PPT
 
Bsc cs ii dfs u-2 linklist,stack,queue
Bsc cs ii  dfs u-2 linklist,stack,queueBsc cs ii  dfs u-2 linklist,stack,queue
Bsc cs ii dfs u-2 linklist,stack,queue
 
Mca ii dfs u-3 linklist,stack,queue
Mca ii dfs u-3 linklist,stack,queueMca ii dfs u-3 linklist,stack,queue
Mca ii dfs u-3 linklist,stack,queue
 
queue & its applications
queue & its applicationsqueue & its applications
queue & its applications
 
Lec26
Lec26Lec26
Lec26
 
Write a JAVA LinkedListRec class that has the following methods siz.pdf
Write a JAVA LinkedListRec class that has the following methods siz.pdfWrite a JAVA LinkedListRec class that has the following methods siz.pdf
Write a JAVA LinkedListRec class that has the following methods siz.pdf
 
Stacks,queues,linked-list
Stacks,queues,linked-listStacks,queues,linked-list
Stacks,queues,linked-list
 
STACKS AND QUEUES CONCEPTS
STACKS AND QUEUES CONCEPTSSTACKS AND QUEUES CONCEPTS
STACKS AND QUEUES CONCEPTS
 
Skip list vinay khimsuriya_200430723005
Skip list vinay khimsuriya_200430723005Skip list vinay khimsuriya_200430723005
Skip list vinay khimsuriya_200430723005
 
queue_final.pptx
queue_final.pptxqueue_final.pptx
queue_final.pptx
 
Queues in C++
Queues in C++Queues in C++
Queues in C++
 
List,Stacks and Queues.pptx
List,Stacks and Queues.pptxList,Stacks and Queues.pptx
List,Stacks and Queues.pptx
 
Analysis of Algorithm (Bubblesort and Quicksort)
Analysis of Algorithm (Bubblesort and Quicksort)Analysis of Algorithm (Bubblesort and Quicksort)
Analysis of Algorithm (Bubblesort and Quicksort)
 
Sorting
SortingSorting
Sorting
 
21-algorithms.ppt
21-algorithms.ppt21-algorithms.ppt
21-algorithms.ppt
 

Recently uploaded

Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 

Recently uploaded (20)

Evolving Data Governance for the Real-time Streaming and AI Era
Evolving Data Governance for the Real-time Streaming and AI EraEvolving Data Governance for the Real-time Streaming and AI Era
Evolving Data Governance for the Real-time Streaming and AI Era
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
WSO2CON2024 - Why Should You Consider Ballerina for Your Next Integration
WSO2CON2024 - Why Should You Consider Ballerina for Your Next IntegrationWSO2CON2024 - Why Should You Consider Ballerina for Your Next Integration
WSO2CON2024 - Why Should You Consider Ballerina for Your Next Integration
 
WSO2Con2024 - Navigating the Digital Landscape: Transforming Healthcare with ...
WSO2Con2024 - Navigating the Digital Landscape: Transforming Healthcare with ...WSO2Con2024 - Navigating the Digital Landscape: Transforming Healthcare with ...
WSO2Con2024 - Navigating the Digital Landscape: Transforming Healthcare with ...
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...
WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...
WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...
 
WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...
WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...
WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public AdministrationWSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
WSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & Innovation
WSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & InnovationWSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & Innovation
WSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & Innovation
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 

Intersection Study - Algorithm[List]