We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b5a8fa + 2a9aba3 commit 66ca277Copy full SHA for 66ca277
1 file changed
data/algorithm-complexity.json
@@ -895,6 +895,25 @@
895
"code": "O(|V|+ |E|)"
896
}
897
]
898
+ } ,
899
+ {
900
+ "title": "ডেপ্ত ফার্স্ট সার্চ (DFS) ট্রি",
901
+ "items": [{
902
+ "definition": "গড়",
903
+ "code": "O(|V|+ |E|)"
904
+ },
905
906
+ "definition": "সবচেয়ে ভাল",
907
+ "code": "O(|1|+ |E|)"
908
909
910
+ "definition": "সবচেয়ে খারাপ",
911
+ "code": "O(|V|^2+ |E|)"
912
913
914
+ "definition": "স্পেস কমপ্লেক্সিটি",
915
+ "code": "O(|V|)"
916
+ }
917
},
918
{
919
"title": "ব্রেডথ-ফার্স্ট সার্চ (BFS) ট্রি",
0 commit comments