Selection ar bubble sort er main basic difference kuthay Bubble sort - proti 2 tah compare kor e boro tah shamne rakhe Selection sort- 1 tah dhore bakigulla compare kor e Etay kih?
here is an alternate way for bubble sorting but the logic is pretty much the same . void bubble (int a[ ] , int n) { int counter = 1 ; while(counter < n) { for(int i = 0 ; ia[ i+1 ]) { int temp = a[ i ]; a[ i ] = a[ i+1 ]; a[ i+1 ] = temp; } } counter++; } for(int i = 0 ; i
def bubble_sort(a): for i in range(len(a)): for j in range(len(a)-i-1): if a[j]>a[j+1]: a[j],a[j+1] = a[j+1],a[j] return a num = [1,10,3,2] bubble_sort(num) print(num) #output=[1,2,3,10] উপরের কোডটি ঠিকভাবে হয় কিন্তু যখন num এর এলেমেন্ট ইনপুট হিসেবে নেই অর্থ্যাৎ: def bubble_sort(a): for i in range(len(a)): for j in range(len(a)-i-1): if a[j]>a[j+1]: a[j],a[j+1] = a[j+1],a[j] return a num = input().split() bubble_sort(num) print(num) #output=[1,10,2,3] একই ইনপুট দিলেও আউটপুট ভুল আসে...আমি কোথায় ভুল করেছি কেউ বলতে পারবেন 😁😁
Merge of Binary Search and Selection Sort: #include using namespace std; int main(){ int arr[]={5,3,7,2,4}; int n=sizeof(arr)/sizeof(arr[0]); int i,j,index_min,temp; //array before sorting: std::cout
ধন্যবাদ ভাইয়া। বাংলাদেশে অনেকেই আজ আপনার বই পড়ে প্রোগ্রামিং এর জগতে পা রেখেছে। আরো এগিয়ে যান।
Sir, apnar boi er link ta dile opokitho hotam
@@mdalmorsaline1153 www.rokomari.com/book/157644/computer-programming--3rd-part---data-structure-o-algorithm-porichiti
@@mdalmorsaline1153 book pdf line ta dile dekhtam
vai
After seeing your video I can understand that what is bubble sort. Love from #Chandpur_Science_and_Technology_University(#CSTU)
For 5 input, for(j=0;j loop works 10 times, but for(j=0;j oop works 16 times,
অনেক ধন্যবাদ ভাইয়্যা। :-)
সর্টিং এলগোরিদম সব গুলো চাই... :-)
Helpful.
I am candidates final year of mathematics.
Take love
Thanks a lot Bhai for this kinda needed video 🖤
বাবল আর সিলেকশন সর্ট এর মধ্যে কোন পার্থক্য তো দেখি না বরং বাবক আর কম্পেক্স করে লেখা, কেউ জানলে প্লিজ জানাবেন
Thanks a lot vaiya :)
selection আর bubble sort এর পার্থক্য কি তাইলে?
Coding থেকে algorithm কিভাবে লিখব😢
ধন্যবাদ ভাই
Thanks you very much to make it crystal clear
Selection ar bubble sort er main basic difference kuthay
Bubble sort - proti 2 tah compare kor e boro tah shamne rakhe
Selection sort- 1 tah dhore bakigulla compare kor e
Etay kih?
Yes
Thank you so much sir
here is an alternate way for bubble sorting but the logic is pretty much the same .
void bubble (int a[ ] , int n)
{
int counter = 1 ;
while(counter < n)
{
for(int i = 0 ; ia[ i+1 ])
{
int temp = a[ i ];
a[ i ] = a[ i+1 ];
a[ i+1 ] = temp;
}
}
counter++;
}
for(int i = 0 ; i
Thanks sir❤
Thank u vaiya
Thanks a lot
Thnx a lot vaia
who to work communication application as like what app. imo, viber....
pls iske upor full video...
Thanks a lot,,
এনিমেশন ভিডিওটা ক্লিয়ারলি বুঝতে হেল্প করছে।
def bubble_sort(a):
for i in range(len(a)):
for j in range(len(a)-i-1):
if a[j]>a[j+1]:
a[j],a[j+1] = a[j+1],a[j]
return a
num = [1,10,3,2]
bubble_sort(num)
print(num)
#output=[1,2,3,10]
উপরের কোডটি ঠিকভাবে হয় কিন্তু যখন num এর এলেমেন্ট ইনপুট হিসেবে নেই অর্থ্যাৎ:
def bubble_sort(a):
for i in range(len(a)):
for j in range(len(a)-i-1):
if a[j]>a[j+1]:
a[j],a[j+1] = a[j+1],a[j]
return a
num = input().split()
bubble_sort(num)
print(num)
#output=[1,10,2,3]
একই ইনপুট দিলেও আউটপুট ভুল আসে...আমি কোথায় ভুল করেছি কেউ বলতে পারবেন 😁😁
num = input().split()
eibhabe array input na niye
num=list(map(int,input().split()))
eibhabe nen hobe.
Merge of Binary Search and Selection Sort:
#include
using namespace std;
int main(){
int arr[]={5,3,7,2,4};
int n=sizeof(arr)/sizeof(arr[0]);
int i,j,index_min,temp;
//array before sorting:
std::cout
tanx
স্যার এরচেয়ে তো সিলেকশন শর্টটা ভাল। তাহলে কেন এটা ব্যবহার করব?
সবকিছু শেখা ভালো
Basic na jene apni kivabe bolte parlen selection sort ta vlo? Aijonno ee bubble sort jana lagbe.Tai apni bolte parlen konta beshi vlo
অামার কাছেও বাবল সর্ট সহজ মনে হয়
সরি, অামি এখনো ইনসার্শন সর্ট দেখিনি। তবে বাবল সর্ট সিলেকশন সর্ট এর চেয়ে সহজ মনে হয়
selection sort, bubble sort er theke sohoj
Thanks sir🥰