SlideShare a Scribd company logo
1 of 8
 Definiţie
 Esenţa metodei
 Schema generală
 Este o metodă generală de elaborare a
algoritmilor. În esenţă ea se aplică
problemelor în care se dă o mulţime A
conţinînd n date de intrare cerîndu-se să
se determine o submulţime B a sa, care
să îndeplinească anumite condiţii pentru
a fi acceptată.
 Metoda Greedy testează toate
elementele mulţimii A, iar mulţimea B
înghite “elementele gustoase” din
mulţimea A.
while ExistaElemente do
begin
AlegeUnElement(x);
IncludeElementul(x);
end
(Funcţia ExistaElemente – returnează valoarea True dacă
mulţimea A există elemente care satisfac criteriul de selecţie;
Funcţia AlegeUnElement – extrage din mulţimea A un element
x;
Funcţia IncludeElemente - înscrie elementul selectat x în
submulţimea B)
 Problemele de tip Greedy pot fi
rezolvate prin metoda trierii, însă
dezavantajul metodei trierii este că
timpul cerut de algoritmii respectivi este
foarte mare.
 La rezolvarea problemelor de tip Greedy
timpul de execuţie este mic, iar volumul
de memorie este mare, acelaşi ca şi la
metoda trierii.
 Metoda Greedy se aplică numai atunci
cînd din enunţul problemei se deduce
regula cae asigură selecţia directă a
tuturor elementelor.
 http://ru.scribd.com/doc/43454385/Metoda-
Greedy
 http://wiki-
proiecte.wikispaces.com/file/view/GREEDY_CEX.p
df/398254902/GREEDY_CEX.pdf
 http://hackpedia.info/viewtopic.php?f=147&t=101
63

More Related Content

What's hot (13)

Tehnica greedy
Tehnica greedyTehnica greedy
Tehnica greedy
 
Metoda greedy(1)
Metoda greedy(1)Metoda greedy(1)
Metoda greedy(1)
 
Metoda greedy
Metoda greedyMetoda greedy
Metoda greedy
 
Metoda greedy (1)
Metoda greedy (1)Metoda greedy (1)
Metoda greedy (1)
 
Metoda greedy
Metoda greedyMetoda greedy
Metoda greedy
 
Informatica
InformaticaInformatica
Informatica
 
Tehnica greedy
Tehnica greedyTehnica greedy
Tehnica greedy
 
Metoda greedy
Metoda greedyMetoda greedy
Metoda greedy
 
Metoda Greedy
Metoda GreedyMetoda Greedy
Metoda Greedy
 
Informat
InformatInformat
Informat
 
Sortare Prin Metoda1.
Sortare Prin Metoda1.Sortare Prin Metoda1.
Sortare Prin Metoda1.
 
Sortare Prin Metoda1.
Sortare Prin Metoda1.Sortare Prin Metoda1.
Sortare Prin Metoda1.
 
Metoda greedy(1)
Metoda greedy(1)Metoda greedy(1)
Metoda greedy(1)
 

Viewers also liked (17)

ITA Boot Camp
ITA Boot CampITA Boot Camp
ITA Boot Camp
 
Basic Electronics
Basic ElectronicsBasic Electronics
Basic Electronics
 
Olyne Mobiles -your reliable companion!
Olyne Mobiles -your reliable companion!Olyne Mobiles -your reliable companion!
Olyne Mobiles -your reliable companion!
 
Criar E Recriar Com Argila
Criar E Recriar Com ArgilaCriar E Recriar Com Argila
Criar E Recriar Com Argila
 
Criar E Recriar Com Isopor
Criar E Recriar Com IsoporCriar E Recriar Com Isopor
Criar E Recriar Com Isopor
 
Criar E Recriar Com Jornal
Criar E Recriar Com JornalCriar E Recriar Com Jornal
Criar E Recriar Com Jornal
 
Matrimonial Unrest
Matrimonial UnrestMatrimonial Unrest
Matrimonial Unrest
 
Criar E Recriar Com Rolo
Criar E Recriar Com RoloCriar E Recriar Com Rolo
Criar E Recriar Com Rolo
 
Matrimonial Unrest
Matrimonial UnrestMatrimonial Unrest
Matrimonial Unrest
 
Matrimonial Unrest
Matrimonial UnrestMatrimonial Unrest
Matrimonial Unrest
 
Skype DL Workshop Presentation
Skype DL Workshop PresentationSkype DL Workshop Presentation
Skype DL Workshop Presentation
 
Learning Objects Tesol 2010
Learning Objects Tesol 2010Learning Objects Tesol 2010
Learning Objects Tesol 2010
 
Apa Style
Apa StyleApa Style
Apa Style
 
Matrimonial Unrest
Matrimonial UnrestMatrimonial Unrest
Matrimonial Unrest
 
Computer Boot Camp
Computer Boot Camp Computer Boot Camp
Computer Boot Camp
 
Metoda trierii
Metoda trieriiMetoda trierii
Metoda trierii
 
Metoda Trierii
Metoda TrieriiMetoda Trierii
Metoda Trierii
 

Metoda greedy