File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 ]
You can’t perform that action at this time.
0 commit comments