劍指Offer——變態跳臺階

題目描述 一隻青蛙一次能夠跳上1級臺階,也能夠跳上2級……它也能夠跳上n級。求該青蛙跳上一個n級的臺階總共有多少種跳法。web 代碼svg class Solution { public: int jumpFloorII(int number) { return 1<<--number; } }; 運行結果 運行時間:5ms 佔用內存:456kcode 解題思路
相關文章
相關標籤/搜索