Skip to content

Commit ebeeda2

Browse files
author
Sabbir Ahmed
authored
Merge pull request #995 from sayedulsayem/sayem-uclid
Euclid's algorithm added
2 parents 33f41c5 + c9abb78 commit ebeeda2

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

data/algorithm-complexity.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -896,6 +896,27 @@
896896
}
897897
]
898898
},
899+
{
900+
"title": "ব্রেডথ-ফার্স্ট সার্চ (BFS) ট্রি",
901+
"items": [
902+
{
903+
"definition": "গড়",
904+
"code": "O(|V|+ |E|)"
905+
},
906+
{
907+
"definition": "সবচেয়ে ভাল",
908+
"code": "O(|1|+ |E|)"
909+
},
910+
{
911+
"definition": "সবচেয়ে খারাপ",
912+
"code": "O(|V|^2+ |E|)"
913+
},
914+
{
915+
"definition": "স্পেস কমপ্লেক্সিটি",
916+
"code": "O(|V|)"
917+
}
918+
]
919+
},
899920
{
900921
"title": "ফ্লাড ফিল (Flood Fill)",
901922
"items": [{
@@ -915,6 +936,26 @@
915936
"code": "O(M x N)"
916937
}
917938
]
939+
},
940+
{
941+
"title": "ইউক্লিড্’স এলগোরিদম (Euclid's Algorithm) ২ সংখ্যার মধ্যে গসাগু ",
942+
"items": [{
943+
"definition": "গড়",
944+
"code": "O(log(min(a, b))"
945+
},
946+
{
947+
"definition": "সবচেয়ে ভাল",
948+
"code": "O(1)"
949+
},
950+
{
951+
"definition": "সবচেয়ে খারাপ",
952+
"code": "O(logb)"
953+
},
954+
{
955+
"definition": "স্পেস কমপ্লেক্সিটি",
956+
"code": "O(1)"
957+
}
958+
]
918959
}
919960
]
920961
}

0 commit comments

Comments
 (0)