Algorithm basic examples
အရင်ဆုံး return statement ဘယ်လိုအလုပ်လုပ်လဲ သိရပါမယ်။ function တစ်ခုရဲ့ value ကိုသတ်မှတ်ပေးတယ့် statement ဖြစ်ပြီး၊ value တစ်ခုခုကို return လိုက်ရင်အောက်က code တွေကို ဆက်မ run ပဲ။ function ကိုအဆုံးသတ်ပေးပါတယ်။ example နဲ့ကြည့်ရအောင်။
အောက်က ပုံမှာ function နှစ်ခုကို နှိုင်းယှဉ်ကြည့်ပါ။ တစ်ခုက return statment နဲ့ နောက်တစ်ခုက print နဲ့နှိုင်းယှဉ်ထားတာပဲ ဖြစ်ပါတယ်။ print_variable ထဲက function က x ကို print ပဲ လုပ်တာပါ။ variable ထဲက function က ဘာတန်ဖိုးမှမရှိပါဘူး None ပါ။ နောက်တစ်ခုကတော့ return statement နဲ့ ဖြစ်ပြီး ဘာကိုမှ print မလုပ်ပါဘူး၊ return ရှေ့က value ကိုပဲ return_variable ထဲ assign လိုက်တာပါ။
အောက်က ဉပမာမှာတော့ x ကို return လိုက်တဲ့အခါ function က အဆုံးသတ်သွားပြီး အောက်က code တွေကိုရပ်လိုက်ပါတယ်။
အပေါ်ဆုံးက algorithm 3 ခု ကို pseudo code နဲ့ရေးထားပြီး အောက်ဆုံးကဟာကိုတော့ python2 အသုံးပြုထားပါတယ်။
1. X and Y multiply
Input နှစ်ခုယူပါမယ်။ X and Y ဖြစ်ပြီး၊ နှစ်ခုကိုမြှောက်မယ့် algorithm ပါ။ ဒါကတော့ ရိုးရှင်းပါတယ်။ ရှင်းပြစရာမလိုလောက်ဘူးထင်တယ်။
2. X and Y is equal?
Input နှစ်ခုယူပါမယ်။ X and Y ဖြစ်ပြီး၊ X နဲ့ Y တူလား ကြည့်ပါမယ်။ တူရင် true ဆိုပြီး return ပြီး မတူရင် ဘာမှ return မှာမဟုတ်ပါဘူး။
3. X and Y until X equals to Y
ဒီ algorithm မှာတော့ X က Y ထက်ငယ်ပြီး X နဲ့ Y နဲ့မတူမချင်း X ကို ပေါင်းမှာပဲ ဖြစ်ပါတယ်။ X နဲ့ Y နဲ့တူဖို့ဆို X + (Y - X) မလား။
4. X and Y is X square root of Y
X and Y ကိုယူပြီး၊X က Y ရဲ့ square root လားဆိုတာ check တဲ့ algorithm ပါ။ ဟုတ်ရင် True မဟုတ်ရင် False ကို return ပါမယ်။ sqrt က python ရဲ့ built-in function ဖြစ်ပြီး int တစ်ခုကို input အဖြစ်ယူပြီး အဲ့ int ရဲ့ square root ကိုရှာပေးတာပါ။
else statement သုံးစရာမလိုပါဘူး ဘာလို့လဲဆိုတော့ x and sqrt(y) တူရင် return လိုက်မှာဖြစ်တဲ့အတွက် function ထဲကို အဆုံးသတ်လိုက်မှဖြစ်တာကြောင့် အောက်က return statement ကို မ run ပါဘူး။