SlideShare a Scribd company logo
1 of 36
Adjacency
Matrix
Topological
Order
Iterator
import
java.io.*;
import
java.uFl.*;
public
class
AdjMatrixGraph
{
int
g[][];
private
int
indegree[];
private
String
vertexNames[];
private
int
numNodes;
Adjacency
Matrix
Topological
Order
Iterator
public
AdjMatrixGraph(String
filename)
{
BufferedReader
b
=
null;
try
{
b
=
new
BufferedReader(new
FileReader(filename));
numNodes
=
Integer.parseInt(b.readLine());
}
catch
(ExcepFon
e)
{
System.out.println("Error
in
file
contents
or
file
not
found");
}
g
=
new
int[numNodes][numNodes];
vertexNames
=
new
String[numNodes];
Adjacency
Matrix
Topological
Order
Iterator
try
{
for
(int
i
=
0;
i
<
numNodes;
i++)
vertexNames[i]
=
b.readLine();
String
line
=
b.readLine();
while
(line
!=
null)
{
Scanner
s
=
new
Scanner(line);
int
v1
=
getNodeNum(s.next());
int
v2
=
getNodeNum(s.next());
g[v1][v2]
=
1;
line
=
b.readLine();
}
}
catch
(ExcepFon
e)
{
System.out.println("Error
in
file
contents"+e.getMessage());
}
}
Adjacency
Matrix
Topological
Order
Iterator
private
int
getNodeNum(String
v)
{
for
(int
i
=
0;
i
<
numNodes;
i++)
if
(vertexNames[i].equals(v))
return
i;
return
-­‐1;
}
private
void
iniFalizeIndegree()
{
for
(int
i
=
0;
i
<
numNodes;
i++)
indegree[i]
=
0;
for
(int
j
=
0;
j
<
numNodes;
j++)
for
(int
i
=
0;
i
<
numNodes;
i++)
indegree[j]
=
indegree[j]+g[i][j];
}
Adjacency
Matrix
Topological
Order
Iterator
public
class
TopoIterator
implements
Iterator<String>
{
private
Queue<Integer>
nodeQueue;
public
TopoIterator()
{
indegree
=
new
int[numNodes];
iniFalizeIndegree();
nodeQueue
=
new
LinkedList<Integer>();
for
(int
i
=
0;
i
<
numNodes;
i++)
if
(indegree[i]
==
0)
nodeQueue.offer(i);
}
Adjacency
Matrix
Topological
Order
Iterator
private
void
updateIndegree(int
v)
{
for
(int
i
=
0;
i
<
numNodes;
i++)
{
if
(g[v][i]
==
1)
{
indegree[i]-­‐-­‐;
if
(indegree[i]
==
0)
nodeQueue.offer(i);
}
}
}
Adjacency
Matrix
Topological
Order
Iterator
public
boolean
hasNext()
{
return
!nodeQueue.isEmpty();
}
public
String
next()
{
int
v
=
nodeQueue.poll();
String
nodeName
=
vertexNames[v];
updateIndegree(v);
return
nodeName;
}
public
void
remove()
{
//opFonal
method
not
implemented
throw
new
UnsupportedOperaFonExcepFon();
}
}
Adjacency
Matrix
Topological
Order
Iterator
public
Iterator<String>
iterator()
{
//return
a
new
iterator
object
return
new
TopoIterator();
}
public
int
order()
{
return
numNodes;
}
public
staFc
void
main(String
args[])
{
AdjMatrixGraph
g1
=
new
AdjMatrixGraph(args[0]);
Iterator<String>
topo
=
g1.iterator();
while
(topo.hasNext())
{
System.out.println(topo.next()+'t');
}
}
}
Input
File
Format
• The
representaFon
of
a
graph
in
the
file
contains
the
following
informaFon.
A
line
containing
an
integer,
n,
where
n
is
the
number
of
nodes
in
the
graph.
A
sequence
of
n
lines
each
of
which
contains
a
name
associated
with
a
node.
The
names
will
only
contains
lejers
and
digits.
Following
the
names
will
be
one
line
for
each
edge.
An
edge
will
be
represented
by
a
pair
of
names
separated
by
a
space.
On
the
next
slide
is
an
example
Input
File
Format
8
A
B
C
D
E
F
G
H
A
B
A
C
B
E
B
D
C
D
C
F
F
G
E
H
E
G
D
G
Assignment
3
• Implement
a
class
called
AdjListGraph
that
is
similar
to
the
AdjMatrixGraph.
• AdjListGraph
must
store
a
graph
using
an
adjacency
list
representaFon
• The
constructor
for
AdjListGraph
has
the
same
signature
as
the
constructor
for
AdjMatrixGraph.
• The
input
file
format
used
by
AdjListGraph
is
the
same
of
as
AdjMatrixGraph
Assignment
3
• AdjListGraph
must
implement
an
iterator
that
can
provides
node
names
in
topological
order.
• The
following
two
slides
give
a
template
of
the
class.
• Use
LinkedList
objects
for
the
adjacency
lists
• Since
you
are
given
the
number
of
nodes
you
can
use
an
array
of
LinkedList
objects
to
store
all
the
adjacency
lists
• You
can
add
other
methods
as
needed
• Do
not
change
the
main
method
Assignment
3
import
java.io.*;
import
java.uFl.*;
public
class
AdjListGraph
{
public
AdjListGraph(String
filename)
{
}
public
class
TopoIterator
implements
Iterator<String>
{
public
TopoIterator()
{
}
public
boolean
hasNext()
{
}
public
String
next()
{
}
public
void
remove()
{
//opFonal
method
not
implemented
throw
new
UnsupportedOperaFonExcepFon();
}
}
Assignment
3
public
Iterator<String>
iterator()
{
}
public
int
order()
{
}
public
staFc
void
main(String
args[])
{
int
count
=
0;
AdjListGraph
g1
=
new
AdjListGraph(args[0]);
Iterator<String>
topo
=
g1.iterator();
while
(topo.hasNext())
{
count++;
System.out.println(topo.next()+'t');
}
if
(count
!=
g1.order())
System.out.println("The
graph
does
not
have
a
topological
order");
}
}
•
Adjacency  Matrix  Topological  Order  Iterator.docx

More Related Content

Similar to Adjacency  Matrix  Topological  Order  Iterator.docx

Network vs. Code Metrics to Predict Defects: A Replication Study
Network vs. Code Metrics  to Predict Defects: A Replication StudyNetwork vs. Code Metrics  to Predict Defects: A Replication Study
Network vs. Code Metrics to Predict Defects: A Replication StudyKim Herzig
 
An introduction into Spring Data
An introduction into Spring DataAn introduction into Spring Data
An introduction into Spring DataOliver Gierke
 
Given Starter Fileimport java.util.Arrays; Encapsulates.pdf
Given Starter Fileimport java.util.Arrays;   Encapsulates.pdfGiven Starter Fileimport java.util.Arrays;   Encapsulates.pdf
Given Starter Fileimport java.util.Arrays; Encapsulates.pdfarchanaemporium
 
Core java by a introduction sandesh sharma
Core java by a introduction sandesh sharmaCore java by a introduction sandesh sharma
Core java by a introduction sandesh sharmaSandesh Sharma
 
import java.io.BufferedReader;import java.io.File;import java.io.pdf
import java.io.BufferedReader;import java.io.File;import java.io.pdfimport java.io.BufferedReader;import java.io.File;import java.io.pdf
import java.io.BufferedReader;import java.io.File;import java.io.pdfmanojmozy
 
Lombokの紹介
Lombokの紹介Lombokの紹介
Lombokの紹介onozaty
 
Java programming lab_manual_by_rohit_jaiswar
Java programming lab_manual_by_rohit_jaiswarJava programming lab_manual_by_rohit_jaiswar
Java programming lab_manual_by_rohit_jaiswarROHIT JAISWAR
 
Comments added... import java.io.File; import java.io.FileNotF.pdf
Comments added... import java.io.File; import java.io.FileNotF.pdfComments added... import java.io.File; import java.io.FileNotF.pdf
Comments added... import java.io.File; import java.io.FileNotF.pdfanwarfoot
 
Programing with java for begniers .pptx
Programing with java for begniers  .pptxPrograming with java for begniers  .pptx
Programing with java for begniers .pptxadityaraj7711
 

Similar to Adjacency  Matrix  Topological  Order  Iterator.docx (20)

Generics
GenericsGenerics
Generics
 
Network vs. Code Metrics to Predict Defects: A Replication Study
Network vs. Code Metrics  to Predict Defects: A Replication StudyNetwork vs. Code Metrics  to Predict Defects: A Replication Study
Network vs. Code Metrics to Predict Defects: A Replication Study
 
An introduction into Spring Data
An introduction into Spring DataAn introduction into Spring Data
An introduction into Spring Data
 
Java generics
Java genericsJava generics
Java generics
 
Java programs
Java programsJava programs
Java programs
 
Given Starter Fileimport java.util.Arrays; Encapsulates.pdf
Given Starter Fileimport java.util.Arrays;   Encapsulates.pdfGiven Starter Fileimport java.util.Arrays;   Encapsulates.pdf
Given Starter Fileimport java.util.Arrays; Encapsulates.pdf
 
Java arrays
Java   arraysJava   arrays
Java arrays
 
Introduzione a C#
Introduzione a C#Introduzione a C#
Introduzione a C#
 
Core java by a introduction sandesh sharma
Core java by a introduction sandesh sharmaCore java by a introduction sandesh sharma
Core java by a introduction sandesh sharma
 
Elementary Sort
Elementary SortElementary Sort
Elementary Sort
 
Jug java7
Jug java7Jug java7
Jug java7
 
Rd
RdRd
Rd
 
import java.io.BufferedReader;import java.io.File;import java.io.pdf
import java.io.BufferedReader;import java.io.File;import java.io.pdfimport java.io.BufferedReader;import java.io.File;import java.io.pdf
import java.io.BufferedReader;import java.io.File;import java.io.pdf
 
Lombokの紹介
Lombokの紹介Lombokの紹介
Lombokの紹介
 
CH1 ARRAY (1).pptx
CH1 ARRAY (1).pptxCH1 ARRAY (1).pptx
CH1 ARRAY (1).pptx
 
Java programming lab_manual_by_rohit_jaiswar
Java programming lab_manual_by_rohit_jaiswarJava programming lab_manual_by_rohit_jaiswar
Java programming lab_manual_by_rohit_jaiswar
 
Anti patterns
Anti patternsAnti patterns
Anti patterns
 
Comments added... import java.io.File; import java.io.FileNotF.pdf
Comments added... import java.io.File; import java.io.FileNotF.pdfComments added... import java.io.File; import java.io.FileNotF.pdf
Comments added... import java.io.File; import java.io.FileNotF.pdf
 
Basic data-structures-v.1.1
Basic data-structures-v.1.1Basic data-structures-v.1.1
Basic data-structures-v.1.1
 
Programing with java for begniers .pptx
Programing with java for begniers  .pptxPrograming with java for begniers  .pptx
Programing with java for begniers .pptx
 

More from galerussel59292

Assessment 4 Instructions Health Promotion Plan Presentation.docx
Assessment 4 Instructions Health Promotion Plan Presentation.docxAssessment 4 Instructions Health Promotion Plan Presentation.docx
Assessment 4 Instructions Health Promotion Plan Presentation.docxgalerussel59292
 
Assessment 4 Instructions Remote Collaboration and Evidence-Based C.docx
Assessment 4 Instructions Remote Collaboration and Evidence-Based C.docxAssessment 4 Instructions Remote Collaboration and Evidence-Based C.docx
Assessment 4 Instructions Remote Collaboration and Evidence-Based C.docxgalerussel59292
 
Assessment 4Cost Savings AnalysisOverviewPrepare a spreads.docx
Assessment 4Cost Savings AnalysisOverviewPrepare a spreads.docxAssessment 4Cost Savings AnalysisOverviewPrepare a spreads.docx
Assessment 4Cost Savings AnalysisOverviewPrepare a spreads.docxgalerussel59292
 
Assessment 4 Instructions Final Care Coordination Plan .docx
Assessment 4 Instructions Final Care Coordination Plan .docxAssessment 4 Instructions Final Care Coordination Plan .docx
Assessment 4 Instructions Final Care Coordination Plan .docxgalerussel59292
 
Assessment 3PRINTPatient Discharge Care Planning .docx
Assessment 3PRINTPatient Discharge Care Planning    .docxAssessment 3PRINTPatient Discharge Care Planning    .docx
Assessment 3PRINTPatient Discharge Care Planning .docxgalerussel59292
 
Assessment 4 ContextRecall that null hypothesis tests are of.docx
Assessment 4 ContextRecall that null hypothesis tests are of.docxAssessment 4 ContextRecall that null hypothesis tests are of.docx
Assessment 4 ContextRecall that null hypothesis tests are of.docxgalerussel59292
 
Assessment 3PRINTLetter to the Editor Population Health P.docx
Assessment 3PRINTLetter to the Editor Population Health P.docxAssessment 3PRINTLetter to the Editor Population Health P.docx
Assessment 3PRINTLetter to the Editor Population Health P.docxgalerussel59292
 
Assessment 3 Instructions Disaster Recovery PlanDevelop a d.docx
Assessment 3 Instructions Disaster Recovery PlanDevelop a d.docxAssessment 3 Instructions Disaster Recovery PlanDevelop a d.docx
Assessment 3 Instructions Disaster Recovery PlanDevelop a d.docxgalerussel59292
 
Assessment 3 Instructions Professional Product     Develop a .docx
Assessment 3 Instructions Professional Product     Develop a .docxAssessment 3 Instructions Professional Product     Develop a .docx
Assessment 3 Instructions Professional Product     Develop a .docxgalerussel59292
 
Assessment 3 Instructions Care Coordination Presentation to Colleag.docx
Assessment 3 Instructions Care Coordination Presentation to Colleag.docxAssessment 3 Instructions Care Coordination Presentation to Colleag.docx
Assessment 3 Instructions Care Coordination Presentation to Colleag.docxgalerussel59292
 
Assessment 3Essay TIPSSWK405 The taskEssayWhen.docx
Assessment 3Essay TIPSSWK405 The taskEssayWhen.docxAssessment 3Essay TIPSSWK405 The taskEssayWhen.docx
Assessment 3Essay TIPSSWK405 The taskEssayWhen.docxgalerussel59292
 
Assessment 3 Health Assessment ProfessionalCommunication.docx
Assessment 3 Health Assessment ProfessionalCommunication.docxAssessment 3 Health Assessment ProfessionalCommunication.docx
Assessment 3 Health Assessment ProfessionalCommunication.docxgalerussel59292
 
Assessment 3Disaster Plan With Guidelines for Implementation .docx
Assessment 3Disaster Plan With Guidelines for Implementation .docxAssessment 3Disaster Plan With Guidelines for Implementation .docx
Assessment 3Disaster Plan With Guidelines for Implementation .docxgalerussel59292
 
Assessment 3 ContextYou will review the theory, logic, and a.docx
Assessment 3 ContextYou will review the theory, logic, and a.docxAssessment 3 ContextYou will review the theory, logic, and a.docx
Assessment 3 ContextYou will review the theory, logic, and a.docxgalerussel59292
 
Assessment 2Quality Improvement Proposal Overview .docx
Assessment 2Quality Improvement Proposal    Overview .docxAssessment 2Quality Improvement Proposal    Overview .docx
Assessment 2Quality Improvement Proposal Overview .docxgalerussel59292
 
Assessment 2by Jaquetta StevensSubmission dat e 14 - O.docx
Assessment 2by Jaquetta StevensSubmission dat e  14 - O.docxAssessment 2by Jaquetta StevensSubmission dat e  14 - O.docx
Assessment 2by Jaquetta StevensSubmission dat e 14 - O.docxgalerussel59292
 
Assessment 2PRINTBiopsychosocial Population Health Policy .docx
Assessment 2PRINTBiopsychosocial Population Health Policy .docxAssessment 2PRINTBiopsychosocial Population Health Policy .docx
Assessment 2PRINTBiopsychosocial Population Health Policy .docxgalerussel59292
 
Assessment 2 Instructions Ethical and Policy Factors in Care Coordi.docx
Assessment 2 Instructions Ethical and Policy Factors in Care Coordi.docxAssessment 2 Instructions Ethical and Policy Factors in Care Coordi.docx
Assessment 2 Instructions Ethical and Policy Factors in Care Coordi.docxgalerussel59292
 
Assessment 2-Analysing factual  texts This assignment re.docx
Assessment 2-Analysing factual  texts This assignment re.docxAssessment 2-Analysing factual  texts This assignment re.docx
Assessment 2-Analysing factual  texts This assignment re.docxgalerussel59292
 
Assessment 2DescriptionFocusEssayValue50Due D.docx
Assessment 2DescriptionFocusEssayValue50Due D.docxAssessment 2DescriptionFocusEssayValue50Due D.docx
Assessment 2DescriptionFocusEssayValue50Due D.docxgalerussel59292
 

More from galerussel59292 (20)

Assessment 4 Instructions Health Promotion Plan Presentation.docx
Assessment 4 Instructions Health Promotion Plan Presentation.docxAssessment 4 Instructions Health Promotion Plan Presentation.docx
Assessment 4 Instructions Health Promotion Plan Presentation.docx
 
Assessment 4 Instructions Remote Collaboration and Evidence-Based C.docx
Assessment 4 Instructions Remote Collaboration and Evidence-Based C.docxAssessment 4 Instructions Remote Collaboration and Evidence-Based C.docx
Assessment 4 Instructions Remote Collaboration and Evidence-Based C.docx
 
Assessment 4Cost Savings AnalysisOverviewPrepare a spreads.docx
Assessment 4Cost Savings AnalysisOverviewPrepare a spreads.docxAssessment 4Cost Savings AnalysisOverviewPrepare a spreads.docx
Assessment 4Cost Savings AnalysisOverviewPrepare a spreads.docx
 
Assessment 4 Instructions Final Care Coordination Plan .docx
Assessment 4 Instructions Final Care Coordination Plan .docxAssessment 4 Instructions Final Care Coordination Plan .docx
Assessment 4 Instructions Final Care Coordination Plan .docx
 
Assessment 3PRINTPatient Discharge Care Planning .docx
Assessment 3PRINTPatient Discharge Care Planning    .docxAssessment 3PRINTPatient Discharge Care Planning    .docx
Assessment 3PRINTPatient Discharge Care Planning .docx
 
Assessment 4 ContextRecall that null hypothesis tests are of.docx
Assessment 4 ContextRecall that null hypothesis tests are of.docxAssessment 4 ContextRecall that null hypothesis tests are of.docx
Assessment 4 ContextRecall that null hypothesis tests are of.docx
 
Assessment 3PRINTLetter to the Editor Population Health P.docx
Assessment 3PRINTLetter to the Editor Population Health P.docxAssessment 3PRINTLetter to the Editor Population Health P.docx
Assessment 3PRINTLetter to the Editor Population Health P.docx
 
Assessment 3 Instructions Disaster Recovery PlanDevelop a d.docx
Assessment 3 Instructions Disaster Recovery PlanDevelop a d.docxAssessment 3 Instructions Disaster Recovery PlanDevelop a d.docx
Assessment 3 Instructions Disaster Recovery PlanDevelop a d.docx
 
Assessment 3 Instructions Professional Product     Develop a .docx
Assessment 3 Instructions Professional Product     Develop a .docxAssessment 3 Instructions Professional Product     Develop a .docx
Assessment 3 Instructions Professional Product     Develop a .docx
 
Assessment 3 Instructions Care Coordination Presentation to Colleag.docx
Assessment 3 Instructions Care Coordination Presentation to Colleag.docxAssessment 3 Instructions Care Coordination Presentation to Colleag.docx
Assessment 3 Instructions Care Coordination Presentation to Colleag.docx
 
Assessment 3Essay TIPSSWK405 The taskEssayWhen.docx
Assessment 3Essay TIPSSWK405 The taskEssayWhen.docxAssessment 3Essay TIPSSWK405 The taskEssayWhen.docx
Assessment 3Essay TIPSSWK405 The taskEssayWhen.docx
 
Assessment 3 Health Assessment ProfessionalCommunication.docx
Assessment 3 Health Assessment ProfessionalCommunication.docxAssessment 3 Health Assessment ProfessionalCommunication.docx
Assessment 3 Health Assessment ProfessionalCommunication.docx
 
Assessment 3Disaster Plan With Guidelines for Implementation .docx
Assessment 3Disaster Plan With Guidelines for Implementation .docxAssessment 3Disaster Plan With Guidelines for Implementation .docx
Assessment 3Disaster Plan With Guidelines for Implementation .docx
 
Assessment 3 ContextYou will review the theory, logic, and a.docx
Assessment 3 ContextYou will review the theory, logic, and a.docxAssessment 3 ContextYou will review the theory, logic, and a.docx
Assessment 3 ContextYou will review the theory, logic, and a.docx
 
Assessment 2Quality Improvement Proposal Overview .docx
Assessment 2Quality Improvement Proposal    Overview .docxAssessment 2Quality Improvement Proposal    Overview .docx
Assessment 2Quality Improvement Proposal Overview .docx
 
Assessment 2by Jaquetta StevensSubmission dat e 14 - O.docx
Assessment 2by Jaquetta StevensSubmission dat e  14 - O.docxAssessment 2by Jaquetta StevensSubmission dat e  14 - O.docx
Assessment 2by Jaquetta StevensSubmission dat e 14 - O.docx
 
Assessment 2PRINTBiopsychosocial Population Health Policy .docx
Assessment 2PRINTBiopsychosocial Population Health Policy .docxAssessment 2PRINTBiopsychosocial Population Health Policy .docx
Assessment 2PRINTBiopsychosocial Population Health Policy .docx
 
Assessment 2 Instructions Ethical and Policy Factors in Care Coordi.docx
Assessment 2 Instructions Ethical and Policy Factors in Care Coordi.docxAssessment 2 Instructions Ethical and Policy Factors in Care Coordi.docx
Assessment 2 Instructions Ethical and Policy Factors in Care Coordi.docx
 
Assessment 2-Analysing factual  texts This assignment re.docx
Assessment 2-Analysing factual  texts This assignment re.docxAssessment 2-Analysing factual  texts This assignment re.docx
Assessment 2-Analysing factual  texts This assignment re.docx
 
Assessment 2DescriptionFocusEssayValue50Due D.docx
Assessment 2DescriptionFocusEssayValue50Due D.docxAssessment 2DescriptionFocusEssayValue50Due D.docx
Assessment 2DescriptionFocusEssayValue50Due D.docx
 

Recently uploaded

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
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
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.MateoGardella
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterMateoGardella
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 

Recently uploaded (20)

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
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 ...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 

Adjacency  Matrix  Topological  Order  Iterator.docx