Skip to content

Commit 2a9aba3

Browse files
author
Sabbir Ahmed
authored
Merge branch 'develop' into sayem-dfs
2 parents 3747ee8 + 1b5a8fa commit 2a9aba3

1 file changed

Lines changed: 61 additions & 1 deletion

File tree

data/algorithm-complexity.json

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,67 @@
914914
"definition": "স্পেস কমপ্লেক্সিটি",
915915
"code": "O(|V|)"
916916
}
917-
917+
},
918+
{
919+
"title": "ব্রেডথ-ফার্স্ট সার্চ (BFS) ট্রি",
920+
"items": [
921+
{
922+
"definition": "গড়",
923+
"code": "O(|V|+ |E|)"
924+
},
925+
{
926+
"definition": "সবচেয়ে ভাল",
927+
"code": "O(|1|+ |E|)"
928+
},
929+
{
930+
"definition": "সবচেয়ে খারাপ",
931+
"code": "O(|V|^2+ |E|)"
932+
},
933+
{
934+
"definition": "স্পেস কমপ্লেক্সিটি",
935+
"code": "O(|V|)"
936+
}
937+
]
938+
},
939+
{
940+
"title": "ফ্লাড ফিল (Flood Fill)",
941+
"items": [
942+
{
943+
"definition": "গড়",
944+
"code": "O(M x N)"
945+
},
946+
{
947+
"definition": "সবচেয়ে ভাল",
948+
"code": "O(M x N)"
949+
},
950+
{
951+
"definition": "সবচেয়ে খারাপ",
952+
"code": "O(M x N)"
953+
},
954+
{
955+
"definition": "স্পেস কমপ্লেক্সিটি",
956+
"code": "O(M x N)"
957+
}
958+
]
959+
},
960+
{
961+
"title": "ইউক্লিড্’স এলগোরিদম (Euclid's Algorithm) ২ সংখ্যার মধ্যে গসাগু ",
962+
"items": [{
963+
"definition": "গড়",
964+
"code": "O(log(min(a, b))"
965+
},
966+
{
967+
"definition": "সবচেয়ে ভাল",
968+
"code": "O(1)"
969+
},
970+
{
971+
"definition": "সবচেয়ে খারাপ",
972+
"code": "O(logb)"
973+
},
974+
{
975+
"definition": "স্পেস কমপ্লেক্সিটি",
976+
"code": "O(1)"
977+
}
918978
]
919979
}
920980
]

0 commit comments

Comments
 (0)