SlideShare a Scribd company logo
Longest Common Subsequence
By
Asif Shahriar
ID: 171-15-8617
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
i=1 j=1
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0
i=1 j=1
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0
i=1 j=2
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0
i=1 j=3
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1
i=1 j=4
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1 1
i=1 j=5
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1 1
1
i=2 j=1
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1 1
1 1 1 1 2
1 1 2 2 2
1 1 2 2 3
printf("The lenght of LCS is %d",c[mx][ny]);
0 0 0 1 1
1 1 1 1 2
1 1 2 2 2
1 1 2 2 3
0/1 Knapsack
By
Asif Shahriar
ID: 171-15-8617
0 1 2 3 4 5
0 0 0 0 0 0
0 0
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 1
wi = 2
bi = 3
w-wi = -1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 1
wi = 2
bi = 3
w-wi = -1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 2
wi = 2
bi = 3
w-wi = 0
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 2,3,4,5
wi = 2
bi = 3
w-wi = 0
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 1
wi = 3
bi = 4
w-wi = -2
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 2
wi = 3
bi = 4
w-wi = -1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 3
wi = 3
bi = 4
w-wi = 0
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4 4
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 4
wi = 3
bi = 4
w-wi = 1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4 4 7
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 5
wi = 3
bi = 4
w-wi = 2
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4 4 7
0 0 3 4 5 7
0 0 3 4 5 7
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
Max Value

More Related Content

What's hot

Datamining R 1st
Datamining R 1stDatamining R 1st
Datamining R 1st
sesejun
 
PRE: Datamining 2nd R
PRE: Datamining 2nd RPRE: Datamining 2nd R
PRE: Datamining 2nd R
sesejun
 
Datamining r 1st
Datamining r 1stDatamining r 1st
Datamining r 1st
sesejun
 
Sol3
Sol3Sol3
Presentation4
Presentation4Presentation4
Presentation4
Jorge707r
 
Algebra 1 Item No 22
Algebra 1 Item No 22Algebra 1 Item No 22
Algebra 1 Item No 22
Lappy Doods
 
ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-
ssusere0a682
 
Surds & indices in business mathematics
Surds & indices in business mathematics Surds & indices in business mathematics
Surds & indices in business mathematics
Dr. Trilok Kumar Jain
 
9 chap
9 chap9 chap
All about life and death volume 1 - a basic dictionary of life and death - ...
All about life and death   volume 1 - a basic dictionary of life and death - ...All about life and death   volume 1 - a basic dictionary of life and death - ...
All about life and death volume 1 - a basic dictionary of life and death - ...
Eases Pe'Ple
 
The chain rule
The chain ruleThe chain rule
The chain rule
Shaun Wilson
 
Getting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n MonadsGetting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n Monads
Richard Minerich
 
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
ssusere0a682
 
On Bernstein Polynomials
On Bernstein PolynomialsOn Bernstein Polynomials
On Bernstein Polynomials
IOSR Journals
 
Integrales solucionario
Integrales solucionarioIntegrales solucionario
Integrales solucionario
Gualberto Lopéz Durán
 
Kisi2+met num
Kisi2+met numKisi2+met num
Kisi2+met num
Alvin Setiawan
 
P9 quotient
P9 quotientP9 quotient
P9 quotient
walshbarbaram
 

What's hot (17)

Datamining R 1st
Datamining R 1stDatamining R 1st
Datamining R 1st
 
PRE: Datamining 2nd R
PRE: Datamining 2nd RPRE: Datamining 2nd R
PRE: Datamining 2nd R
 
Datamining r 1st
Datamining r 1stDatamining r 1st
Datamining r 1st
 
Sol3
Sol3Sol3
Sol3
 
Presentation4
Presentation4Presentation4
Presentation4
 
Algebra 1 Item No 22
Algebra 1 Item No 22Algebra 1 Item No 22
Algebra 1 Item No 22
 
ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-
 
Surds & indices in business mathematics
Surds & indices in business mathematics Surds & indices in business mathematics
Surds & indices in business mathematics
 
9 chap
9 chap9 chap
9 chap
 
All about life and death volume 1 - a basic dictionary of life and death - ...
All about life and death   volume 1 - a basic dictionary of life and death - ...All about life and death   volume 1 - a basic dictionary of life and death - ...
All about life and death volume 1 - a basic dictionary of life and death - ...
 
The chain rule
The chain ruleThe chain rule
The chain rule
 
Getting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n MonadsGetting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n Monads
 
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
 
On Bernstein Polynomials
On Bernstein PolynomialsOn Bernstein Polynomials
On Bernstein Polynomials
 
Integrales solucionario
Integrales solucionarioIntegrales solucionario
Integrales solucionario
 
Kisi2+met num
Kisi2+met numKisi2+met num
Kisi2+met num
 
P9 quotient
P9 quotientP9 quotient
P9 quotient
 

Similar to Longest common sub sequence & 0/1 Knapsack

DynProg_Knapsack.ppt
DynProg_Knapsack.pptDynProg_Knapsack.ppt
DynProg_Knapsack.ppt
Ruchika Sinha
 
Knapsack problem
Knapsack problemKnapsack problem
Knapsack problem
Vikas Sharma
 
Knapsack problem using dynamic programming
Knapsack problem using dynamic programmingKnapsack problem using dynamic programming
Knapsack problem using dynamic programming
khush_boo31
 
lecture 25
lecture 25lecture 25
lecture 25
sajinsc
 
Knapsack problem and Memory Function
Knapsack problem and Memory FunctionKnapsack problem and Memory Function
Knapsack problem and Memory Function
Barani Tharan
 
0-1 knapsack.ppt
0-1 knapsack.ppt0-1 knapsack.ppt
0-1 knapsack.ppt
AyushJaiswal513854
 
3 dot product angles-projection
3 dot product angles-projection3 dot product angles-projection
3 dot product angles-projection
math267
 
13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming
Neeldhara Misra
 
Pascal’s Triangle
Pascal’s TrianglePascal’s Triangle
Pascal’s Triangle
Clayton Rainsberg
 

Similar to Longest common sub sequence & 0/1 Knapsack (9)

DynProg_Knapsack.ppt
DynProg_Knapsack.pptDynProg_Knapsack.ppt
DynProg_Knapsack.ppt
 
Knapsack problem
Knapsack problemKnapsack problem
Knapsack problem
 
Knapsack problem using dynamic programming
Knapsack problem using dynamic programmingKnapsack problem using dynamic programming
Knapsack problem using dynamic programming
 
lecture 25
lecture 25lecture 25
lecture 25
 
Knapsack problem and Memory Function
Knapsack problem and Memory FunctionKnapsack problem and Memory Function
Knapsack problem and Memory Function
 
0-1 knapsack.ppt
0-1 knapsack.ppt0-1 knapsack.ppt
0-1 knapsack.ppt
 
3 dot product angles-projection
3 dot product angles-projection3 dot product angles-projection
3 dot product angles-projection
 
13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming
 
Pascal’s Triangle
Pascal’s TrianglePascal’s Triangle
Pascal’s Triangle
 

Recently uploaded

BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Vivekanand Anglo Vedic Academy
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
zuzanka
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
ssuser13ffe4
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Nutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour TrainingNutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour Training
melliereed
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
zuzanka
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 

Recently uploaded (20)

BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Nutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour TrainingNutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour Training
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 

Longest common sub sequence & 0/1 Knapsack