We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcf7cb4 commit afd84d9Copy full SHA for afd84d9
1 file changed
data/algorithm-complexity.json
@@ -895,6 +895,26 @@
895
"code": "O(|V|+ |E|)"
896
}
897
]
898
+ },
899
+ {
900
+ "title": "ব্রেডথ-ফার্স্ট সার্চ (BFS) ট্রি",
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
920
0 commit comments