SlideShare a Scribd company logo
1 of 63
Chapter4 - Linked List
http://icodeguru.com/vc/10book/books/book1/chap04.htm
Dr. R. Khanchana
Assistant Professor
Department of Computer Science
Sri Ramakrishna College of Arts and Science for
Women
4.1 SINGLY LINKED LISTS
• A linked list is a series of connected nodes
• Each node contains at least
– A piece of data (any type)
– Pointer to the next node in the list
• Head: pointer to the first node
• The last node points to NULL
Linked List Types
Singly Linked List
• For example
– consider the following list
of all of the three letter
English words ending in AT:
• (BAT, CAT, EAT, FAT, HAT,
JAT, LAT, MAT, OAT, PAT,
RAT, SAT, TAT, VAT, WAT)
Linked List -Representation
To insert the data item GAT between FAT and HAT the
following steps are adequate:
(i) get a node which is currently unused; let its address be X;
(ii) set the DATA field of this node to GAT;
(iii) set the LINK field of X to point to the node after FAT which
contains HAT;
(iv) set the LINK field of the node containing FAT to X.
Linked List - Insertion
Linked List - Deletion
DATA and LINK
• GETNODE(X) which provides in X a pointer to a
free node but if no node is free, it prints an
error message and stops;
• RET(X) which returns node X to the storage
pool.
Linked List –CREATE Procedure
• Example 4.1: Assume that each node has two fields DATA and LINK.
The following algorithm creates a linked list with two nodes whose DATA fields are
set to be the values 'MAT' and 'PAT' respectively. T is a pointer to the first node in
this list.
Linked List – INSERT Procedure
Example 4.2 : Let T be a pointer to a linked list as in Example 4.1. T= 0
if the list has no nodes. Let X be a pointer to some arbitrary node in the
list T. The following algorithm inserts a node with DATA field 'OAT' following
the node pointed at by X.
Linked List – DELETE Procedure
• Example 4.3: Let X be a pointer to some node in a linked
list T as in example 4.2. Let Y be the node preceding X. Y = 0
if X is the first node in T (i.e., if X = T). The following algorithm
deletes node X from T.
Quiz
• https://quizizz.com/admin/quiz/5f14176fef2e
5b001b37a9b4
Feedback
• https://docs.google.com/forms/d/1zwn8mp1r
AWwrjmIepp3eG3sAusUdOuJTYmeBZ6jEATk/e
dit
4.2 LINKED STACKS AND QUEUES
Initial & Boundary Conditions in LL
If we wish to represent n stacks and m queues simultaneously, then
the following set of algorithms and initial conditions
Procedure ADD Stack in Linked List
Scenario 1
Scenario 2
Procedure DELETE Stack in Linked List
Scenario 1
Scenario 2
Procedure ADD Queue in Linked List
Procedure DELETE Queue in Linked List
Linked List Animation
• https://www.youtube.com/watch?reload=9&v
=iNUS9iZwrVA
Quiz
• https://quizizz.com/admin/quiz/5f26b6ac4f96
ac001b5f7542
Feedback
• https://docs.google.com/forms/d/1Twhq95BD
Pmsn4UPqGdqG1z4BQaLbgPKftmyp9CsYLJU/e
dit
Polynomial Addition
Example
Polynomial Addition
Assignment
• Add the given Polynomial
Assignment -Results
Polynomial Addition
Polynomial Addition
Procedure - ATTACH
Procedure –Polynomial Addition
Procedure -ERASE
Circular List - Representation
4.5 MORE ON LINKED LISTS
1) INIT which originally links together the AV list
2) GETNODE and
3) RET which get and return nodes to AV
Procedures
 INVERT
 CONCATENATE
 INSERT FRONT
 LENGTH
Procedure - INVERT
• https://www.youtube.com/watch?v=TSDl7sRx
WdU
Procedure - INVERT
Procedure - CONCATENATE
Procedure – INSERT_FRONT
Procedure - LENGTH
Quiz
• https://quizizz.com/admin/quiz/5f2ba37b47a
a7500203ee1e7
DOUBLY LINKED LISTS
• DATA
• LLINK (left link)
• RLINK (right link)
• P = RLINK (LLINK(P)) = LLINK (RLINK(P))
Doubly Linked List -Delete
Doubly Linked List - Insert
P
X
Quiz
• https://quizizz.com/admin/quiz/5f30d2b03e2
045001b778314
SPARSE MATRICES in Linked List
• ROW, COL, DOWN, RIGHT and VALUE
Linked List Representation in Linked
List
Analysis of Algorithm MERASE
Analysis of Algorithm MREAD
Analysis of Algorithm MREAD
Analysis of Algorithm MREAD
DYNAMIC STORAGE MANAGEMENT
Assume we start off with
100,000 words of memory and
five programs P1, P2, P3, P4
and P5 make requests of size
10,000, 15,000, 6,000, 8,000
and 20,000 respectively.
Figure 4.14 indicates the status
of memory after storage for P5
has been allocated.
Figure 4.15 show the status of
memory after the blocks for P2
and P4 are freed.
Free List with Head Node
First Fit Strategy
• If we now receive a request for a block of
memory of size N, then it is necessary to search
down the list of free blocks finding the first block
of size N and allocating N words out of this block.
Such an allocation strategy is called first fit.
• The algorithm below makes storage allocations
using the first fit strategy.
– An alternate strategy, best fit, calls for finding a free
block whose size is as close to N as possible, but not
less than N.
Procedure – First Fit
• s
Determination of Free Nodes
It is not easy to determine whether blocks
adjacent to the block (n, p) (n = size of
block and p = starting location) being
returned are free. The only way to do this,
at present, is to examine all the nodes
in AV to determine whether:
(i) the left adjacent block is free, i.e., the
block ending at p - 1;
(ii) the right adjacent block is free, i.e., the
block beginning at p + n.
In order to determine (i) and (ii) above
without searching the available space list,
we adopt the node structure of figure
4.19 for allocated and free nodes:
Allocate Procedure
Allocate Procedure
Free -Procedure
Free -Procedure
Garbage Collection and Compaction
• Garbage collection is the process of collecting all unused
nodes and returning them to available space.
– This process is carried out in essentially two phases.
• First phase, known as the marking phase, all nodes in use are
marked.
• Second phase all unmarked nodes are returned to the
available space list.
• When variable size nodes are in use, it is desirable to compact
memory so that all free nodes form a contiguous block of
memory. In this case the second phase is referred to as
memory compaction. Compaction of disk space to reduce
average retrieval time is desirable even for fixed size nodes.
•
Marking
• Marking means need to a mark bit in each node.
It will be assumed that this mark bit can be
changed at any time by the marking algorithm.
• Marking algorithms mark
– all directly accessible nodes (i.e., nodes accessible
through program variables referred to as pointer
variables)
– all indirectly accessible nodes (i.e., nodes accessible
through link fields of nodes in accessible lists).
Marking
• Each node will have a one bit mark field, MARK, as well as a
one bit tag field, TAG.
• The tag bit of a node will be zero if it contains atomic
information. The tag bit is one otherwise.
• A node with a tag of one has two link fields DLINK and
RLINK.
• Atomic information can be stored only in a node with tag 0.
Such nodes are called atomic nodes.
• All other nodes are list nodes. This node structure is slightly
different from the one used in the previous section where a
node with tag 0 contained atomic information as well as a
RLINK. It is usually the case that the DLINK field is too small
for the atomic information and an entire node is required.
Marking Phase
Analysis of MARK1

More Related Content

What's hot

1.5 binary search tree
1.5 binary search tree1.5 binary search tree
1.5 binary search treeKrish_ver2
 
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...DrkhanchanaR
 
Trees in Data Structure
Trees in Data StructureTrees in Data Structure
Trees in Data StructureOm Prakash
 
Priority queue in DSA
Priority queue in DSAPriority queue in DSA
Priority queue in DSAjunnubabu
 
Html text formatting
Html text formattingHtml text formatting
Html text formattingderekoei
 
Lecture notes data structures tree
Lecture notes data structures   treeLecture notes data structures   tree
Lecture notes data structures treemaamir farooq
 
Data structures - unit 1
Data structures - unit 1Data structures - unit 1
Data structures - unit 1SaranyaP45
 
Binary search tree operations
Binary search tree operationsBinary search tree operations
Binary search tree operationsKamran Zafar
 
Data Structure and Algorithms Arrays
Data Structure and Algorithms ArraysData Structure and Algorithms Arrays
Data Structure and Algorithms ArraysManishPrajapati78
 
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++Himanshu Choudhary
 
Circular linked list
Circular linked listCircular linked list
Circular linked listchauhankapil
 
3.9 external sorting
3.9 external sorting3.9 external sorting
3.9 external sortingKrish_ver2
 
Queue - Data Structure - Notes
Queue - Data Structure - NotesQueue - Data Structure - Notes
Queue - Data Structure - NotesOmprakash Chauhan
 
Queue data structure
Queue data structureQueue data structure
Queue data structureanooppjoseph
 

What's hot (20)

1.5 binary search tree
1.5 binary search tree1.5 binary search tree
1.5 binary search tree
 
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
Unit I- Data structures Introduction, Evaluation of Algorithms, Arrays, Spars...
 
Heap sort
Heap sortHeap sort
Heap sort
 
Trees in Data Structure
Trees in Data StructureTrees in Data Structure
Trees in Data Structure
 
Trees, Binary Search Tree, AVL Tree in Data Structures
Trees, Binary Search Tree, AVL Tree in Data Structures Trees, Binary Search Tree, AVL Tree in Data Structures
Trees, Binary Search Tree, AVL Tree in Data Structures
 
Priority queue in DSA
Priority queue in DSAPriority queue in DSA
Priority queue in DSA
 
b+ tree
b+ treeb+ tree
b+ tree
 
Html text formatting
Html text formattingHtml text formatting
Html text formatting
 
Lecture notes data structures tree
Lecture notes data structures   treeLecture notes data structures   tree
Lecture notes data structures tree
 
Data structures - unit 1
Data structures - unit 1Data structures - unit 1
Data structures - unit 1
 
Binary search tree operations
Binary search tree operationsBinary search tree operations
Binary search tree operations
 
Data Structure and Algorithms Arrays
Data Structure and Algorithms ArraysData Structure and Algorithms Arrays
Data Structure and Algorithms Arrays
 
Doubly linked list (animated)
Doubly linked list (animated)Doubly linked list (animated)
Doubly linked list (animated)
 
Red black tree
Red black treeRed black tree
Red black tree
 
Linked list
Linked listLinked list
Linked list
 
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++
 
Circular linked list
Circular linked listCircular linked list
Circular linked list
 
3.9 external sorting
3.9 external sorting3.9 external sorting
3.9 external sorting
 
Queue - Data Structure - Notes
Queue - Data Structure - NotesQueue - Data Structure - Notes
Queue - Data Structure - Notes
 
Queue data structure
Queue data structureQueue data structure
Queue data structure
 

Similar to Unit 2 linked list

Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...
Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...
Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...Arun Kumar
 
Data Structures in C
Data Structures in CData Structures in C
Data Structures in CJabs6
 
DS Module 03.pdf
DS Module 03.pdfDS Module 03.pdf
DS Module 03.pdfSonaPathak5
 
Memory allocation
Memory allocationMemory allocation
Memory allocationsanya6900
 
Operations on linked list
Operations on linked listOperations on linked list
Operations on linked listSumathi Kv
 
UNIT 3a.pptx
UNIT 3a.pptxUNIT 3a.pptx
UNIT 3a.pptxjack881
 
Bca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothiBca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothiSowmya Jyothi
 
II B.Sc IT DATA STRUCTURES.pptx
II B.Sc IT DATA STRUCTURES.pptxII B.Sc IT DATA STRUCTURES.pptx
II B.Sc IT DATA STRUCTURES.pptxsabithabanu83
 
Data structures and algorithms
Data structures and algorithmsData structures and algorithms
Data structures and algorithmsJulie Iskander
 
CS8391-DATA-STRUCTURES.pdf
CS8391-DATA-STRUCTURES.pdfCS8391-DATA-STRUCTURES.pdf
CS8391-DATA-STRUCTURES.pdfraji175286
 
358 33 powerpoint-slides_4-introduction-data-structures_chapter-4
358 33 powerpoint-slides_4-introduction-data-structures_chapter-4358 33 powerpoint-slides_4-introduction-data-structures_chapter-4
358 33 powerpoint-slides_4-introduction-data-structures_chapter-4sumitbardhan
 

Similar to Unit 2 linked list (20)

DSModule2.pptx
DSModule2.pptxDSModule2.pptx
DSModule2.pptx
 
Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...
Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...
Dynamic memory allocation Dynamic Memory Allocation I. Topics. Basic represen...
 
Data structure-question-bank
Data structure-question-bankData structure-question-bank
Data structure-question-bank
 
linked_list.pptx
linked_list.pptxlinked_list.pptx
linked_list.pptx
 
Data Structures in C
Data Structures in CData Structures in C
Data Structures in C
 
Lecture 2c stacks
Lecture 2c stacksLecture 2c stacks
Lecture 2c stacks
 
unit 2- PPT.pdf
unit 2- PPT.pdfunit 2- PPT.pdf
unit 2- PPT.pdf
 
DS Module 03.pdf
DS Module 03.pdfDS Module 03.pdf
DS Module 03.pdf
 
Linked List
Linked ListLinked List
Linked List
 
Memory allocation
Memory allocationMemory allocation
Memory allocation
 
Operations on linked list
Operations on linked listOperations on linked list
Operations on linked list
 
UNIT 3a.pptx
UNIT 3a.pptxUNIT 3a.pptx
UNIT 3a.pptx
 
Bca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothiBca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothi
 
II B.Sc IT DATA STRUCTURES.pptx
II B.Sc IT DATA STRUCTURES.pptxII B.Sc IT DATA STRUCTURES.pptx
II B.Sc IT DATA STRUCTURES.pptx
 
Data structures and algorithms
Data structures and algorithmsData structures and algorithms
Data structures and algorithms
 
06 linked list
06 linked list06 linked list
06 linked list
 
CS8391-DATA-STRUCTURES.pdf
CS8391-DATA-STRUCTURES.pdfCS8391-DATA-STRUCTURES.pdf
CS8391-DATA-STRUCTURES.pdf
 
Data structure
 Data structure Data structure
Data structure
 
Data structures
Data structuresData structures
Data structures
 
358 33 powerpoint-slides_4-introduction-data-structures_chapter-4
358 33 powerpoint-slides_4-introduction-data-structures_chapter-4358 33 powerpoint-slides_4-introduction-data-structures_chapter-4
358 33 powerpoint-slides_4-introduction-data-structures_chapter-4
 

More from DrkhanchanaR

Unit 5 composite datatypes
Unit 5  composite datatypesUnit 5  composite datatypes
Unit 5 composite datatypesDrkhanchanaR
 
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLEUnit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLEDrkhanchanaR
 
Unit I Database concepts - RDBMS & ORACLE
Unit I  Database concepts - RDBMS & ORACLEUnit I  Database concepts - RDBMS & ORACLE
Unit I Database concepts - RDBMS & ORACLEDrkhanchanaR
 

More from DrkhanchanaR (6)

Unit 5 composite datatypes
Unit 5  composite datatypesUnit 5  composite datatypes
Unit 5 composite datatypes
 
Unit 4 plsql
Unit 4  plsqlUnit 4  plsql
Unit 4 plsql
 
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLEUnit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLE
 
Unit 2 oracle9i
Unit 2  oracle9i Unit 2  oracle9i
Unit 2 oracle9i
 
Data Modeling
Data ModelingData Modeling
Data Modeling
 
Unit I Database concepts - RDBMS & ORACLE
Unit I  Database concepts - RDBMS & ORACLEUnit I  Database concepts - RDBMS & ORACLE
Unit I Database concepts - RDBMS & ORACLE
 

Recently uploaded

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 

Recently uploaded (20)

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 

Unit 2 linked list