window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/zyrastory.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.1.1"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
https://zyrastory.com/wp-includes/js/jquery/jquery.min.js
https://zyrastory.com/wp-includes/js/jquery/jquery-migrate.min.js
jQuery(document).ready(function(){document.querySelectorAll(".ez-toc-section").forEach(t=>{t.setAttribute("ez-toc-data-id","#"+decodeURI(t.getAttribute("id")))}),jQuery("a.ez-toc-link").click(function(){let t=jQuery(this).attr("href"),e=jQuery("#wpadminbar"),i=0;30>30&&(i=30),e.length&&(i+=e.height()),jQuery('[ez-toc-data-id="'+decodeURI(t)+'"]').length>0&&(i=jQuery('[ez-toc-data-id="'+decodeURI(t)+'"]').offset().top-i),jQuery("html, body").animate({scrollTop:i},500)})});
(function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i+"?ref=bwt"; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "btkbh92jgl");
Skip to content
LeetCode題目翻譯 英文原文如下
Implement pow(x, n) , which calculates x raised to the power n (i.e., xn ).
實作一個 pow函式 , 計算 x 的 n 次方 (換句話說,就是 X n )
這題的題目限制比較沒什麼重要的, n 為Integer (介於Int32的區間)
直接來看下範例吧
第一題根本就是工程師的送分題呢,最熟悉的2的10次方 – 1024 (之後有機會再為了她出一篇文章)
來看下第三題,大家都忘光光的負次方,X的負n次方 ➔ X的n次方之一 ➔ 1/Xn
解題思路 講到次方還有什麼要注意的呢?
那結合以上幾個推論,我們來實作看看
C# 解決方案 ❌首次嘗試 – 直接迴圈
public class Solution {
public double MyPow(double x, int n) {
if(x == 0)
{
return 0.0;
}
else if (n == 0)
{
return 1.0;
}
double res = 1;
bool neg = n < 0; //negative power : 負的次方
if(neg)
{
n*=-1;
}
//多少次方就乘多少次,反正n為整數
for(int i = 0;i<n;i++)
{
res*=x;
}
//負的次方,最後要變回幾分之一
if(neg)
{
res = 1/res;
}
return res;
}
}
看起來沒什麼問題吧? 測試範例應該也都可以過
那我們大膽地按下 Submit 吧 !
超過時間限制了
而且還是在這種笨笨的範例上,1的整數次方一定也是1…
你說寫法有問題嗎?就邏輯上來說還確實沒有呢
這時我們再來想一下該調整邏輯
方案1 – 修正版
我們這時來想一下
2的8次方也就是 2*2*2*2*2*2*2*2
是不是可以寫成 22 * 22 * 22 * 22 也就是 4 的4次方
而4的4次方又可以寫成 42 * 42 也就是 16的平方
要是我們能得到16再來進行計算,是不是就不用跑這麼多次了
public class Solution {
public double MyPow(double x, int n) {
if(x == 0)
{
return 0.0;
}
double res = cal(x, n);
return n>0 ? res : 1/res;
}
private double cal(double x, int n)
{
//Console.WriteLine("x:"+x+",n="+n); //註1
if (n == 0)
{
return 1.0;
}
double res = cal(x*x,n/2) ;
return n%2 == 0 ? res : res*x;
}
}
大家測試時可以將註1 的註解移掉,可以幫助大家理解邏輯
我們一樣拿 x = 2 ,n = 8 來計算 ( 28 )
第五次遞迴因為n為 0,所以會回傳 1
故我們看回第四次遞迴,n為1 1不是2的倍數 (n%2 == 0),故需要res * x ➔ res為第五次遞迴迴傳的1 ➔ 回傳 1*256
其他次因為n均為2的整數,故都直接回傳
所以可以得到 256
Java解 決方案方案1
class Solution {
public double myPow(double x, int n) {
if(x == 0)
{
return 0.0;
}
double res = cal(x, n);
return n>0 ? res : 1/res;
}
private double cal(double x, int n)
{
if (n == 0)
{
return 1.0;
}
double res = cal(x*x,n/2);
return n%2 == 0 ? res : res*x;
}
}
Python3 解決方案方案1
def cal(x: float, n: int) -> float:
if n == 0:
return 1.0
res = cal(x*x,(int)(n/2))
return res if n%2 == 0 else res*x
class Solution:
def myPow(self, x: float, n: int) -> float:
if x == 0:
return 0
res = cal(x, n)
return res if n>0 else 1/res
JavaScript 解決方案方案1
/**
* @param {number} x
* @param {number} n
* @return {number}
*/
var myPow = function(x, n) {
if(x == 0)
{
return 0.0;
}
res = cal(x, n);
return n>0 ? res : 1/res;
};
function cal(x, n)
{
if (n == 0)
{
return 1.0;
}
res = cal(x*x,parseInt(n/2));
return n%2 == 0 ? res : res*x;
}
結論 這一題都之前的 LeetCode #507 Perfect Number 一樣,看到就會很直覺寫出一個辦法
但效能都不算優良,提交會得到超時的錯誤
故如何轉念思考及變換邏輯是很重要的
"Knowledge is power."
Francis Bacon 知識就是力量,而在這題,知識不只是力量,更是「power 次方」
圖片來源 : 封面圖片- Photo by Kamran Chaudhry on Unsplash
英文翻譯 – 劍橋詞典
題目連結 : Pow(x, n) – LeetCode
🧡如果這篇文章有幫上你的一點點忙,那是我的榮幸
🧡可以的話,幫我的FaceBook 粉絲專頁按個讚,我會很感謝的
✅如有任何疑問,歡迎透過留言或messenger讓我知道 !
LeetCode 教學 LeetCode C#解答 , LeetCode JavaScript 解答 , LeetCode Java解答 , LeetCode Medium , LeetCode Python 解答 , LeetCode 教學 Search More LeetCode Problems
Continue Reading
jQuery(".jq-goTop").click(function (e) {
e.preventDefault();
let hi = jQuery(window).scrollTop();
hi = hi/2.5;
jQuery("html,body").animate(
{
scrollTop: 0,
},
hi
);
window.girl = 0;
var clock = setInterval(testFunc, 150);
setTimeout(function()
{
clearInterval(clock);
jQuery("#walking_girl0").hide();
jQuery("#walking_girl1").hide();
jQuery("#walking_girl2").hide();
},hi);
});function testFunc()
{
//console.log(window.girl);
switch(window.girl)
{
case 0:
jQuery("#walking_girl0").show();
jQuery("#walking_girl1").hide();
jQuery("#walking_girl2").hide();
break;
case 1:
jQuery("#walking_girl0").hide();
jQuery("#walking_girl1").show();
jQuery("#walking_girl2").hide();
break;
case 2:
jQuery("#walking_girl0").hide();
jQuery("#walking_girl1").hide();
jQuery("#walking_girl2").show();
break;
}
window.girl = window.girl == 2 ? 0 : window.girl+1;
}
function closePop(){document.getElementById("headlineatas").style.display = 'none';}
function openPop()
{
if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent))
{
return false;
}
var r = Math.random();
if(r>0.7 || r<0.3)
{
document.getElementById("headlineatas").style.display = '';
}
}
function getFocus() {
//document.getElementById("wp-block-search__input-1").focus();
document.querySelector("#secondary > form > label > input").focus();
}
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle = window.adsbygoogle || []).push({});
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js#xfbml=1&version=v6.0&autoLogAppEvents=1'
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
function returnDefault(item)
{
item.innerText = "Copy"
item.style.color = "white"
item.style.backgroundColor = "CornflowerBlue";
}
if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent) == false) //20221128 手機用戶移除copy功能
{
jQuery('code').each(function () {
var btn = document.createElement("button");
btn.innerHTML = "Copy";
btn.onmousedown = "event.preventDefault();";
btn.setAttribute('class', 'btnC');
btn.onclick = function(){
var k = this.nextSibling;
var textArea = document.createElement("textarea");
textArea.style.position = 'fixed';
textArea.style.top = 0;
textArea.style.left = 0;
textArea.style.width = '2em';
textArea.style.height = '2em';// We don't need padding, reducing the size if it does flash render.
textArea.style.padding = 0;// Clean up any borders.
textArea.style.border = 'none';
textArea.style.outline = 'none';
textArea.style.boxShadow = 'none';// Avoid flash of the white box if rendered for any reason.
textArea.style.background = 'transparent';textArea.value = k.textContent;document.body.appendChild(textArea);
textArea.focus();
textArea.select();var successful = document.execCommand('copy');
var msg = successful ? 'successful' : 'unsuccessful';if(successful)
{
this.focus();
this.style.backgroundColor = "green";
this.innerText = "✔Copied"
openPop();
setTimeout(( ()=>returnDefault(this)),1850)
}document.body.removeChild(textArea);
};var parent = this.parentNode;
parent.insertBefore(btn, this);
});
}
https://zyrastory.com/wp-content/themes/responsiveblogily/js/navigation.js
https://zyrastory.com/wp-content/themes/responsiveblogily/js/skip-link-focus-fix.js
https://zyrastory.com/wp-content/themes/responsiveblogily/js/script.js
https://zyrastory.com/wp-content/themes/responsiveblogily/js/jquery.flexslider.js
https://zyrastory.com/wp-content/themes/responsiveblogily/js/accessibility.js
https://zyrastory.com/wp-includes/js/comment-reply.min.js
https://zyrastory.com/wp-content/plugins/highlighting-code-block/assets/js/prism.js
https://zyrastory.com/wp-content/plugins/highlighting-code-block/build/js/hcb_script.js
https://zyrastory.com/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.min.js
https://zyrastory.com/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.min.js
var ezTOC = {"smooth_scroll":"1","visibility_hide_by_default":"","width":"auto","scroll_offset":"30"};
https://zyrastory.com/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js
(function() {
var expirationDate = new Date();
expirationDate.setTime( expirationDate.getTime() + 31536000 * 1000 );
document.cookie = "pll_language=zh; expires=" + expirationDate.toUTCString() + "; path=/; secure; SameSite=Lax";
}());
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
ai_front = {"insertion_before":"BEFORE","insertion_after":"AFTER","insertion_prepend":"PREPEND CONTENT","insertion_append":"APPEND CONTENT","insertion_replace_content":"REPLACE CONTENT","insertion_replace_element":"REPLACE ELEMENT","visible":"VISIBLE","hidden":"HIDDEN","fallback":"FALLBACK","automatically_placed":"Automatically placed by AdSense Auto ads code","cancel":"Cancel","use":"Use","add":"Add","parent":"Parent","cancel_element_selection":"Cancel element selection","select_parent_element":"Select parent element","css_selector":"CSS selector","use_current_selector":"Use current selector","element":"ELEMENT","path":"PATH","selector":"SELECTOR"};