news 2026/5/1 15:54:23

【Leetcode】509. Fibonacci Number

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
【Leetcode】509. Fibonacci Number

题目地址:

https://leetcode.com/problems/fibonacci-number/

求第n nn个Fibonacci数。其中F [ 0 ] = 0 , F [ 1 ] = 1 F[0]=0, F[1]=1F[0]=0,F[1]=1

代码如下:

classSolution{public:intfib(intn){staticconstexprarray<int,31>f=[](){array<int,31>a;a[0]=0,a[1]=1;for(inti=2;i<=30;i++)a[i]=a[i-1]+a[i-2];returna;}();returnf[n];}};

时空复杂度O ( 1 ) O(1)O(1)

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/5/1 15:53:24

终极Visual C++运行库修复指南:从问题诊断到自动化运维全攻略

终极Visual C运行库修复指南&#xff1a;从问题诊断到自动化运维全攻略 【免费下载链接】vcredist AIO Repack for latest Microsoft Visual C Redistributable Runtimes 项目地址: https://gitcode.com/gh_mirrors/vc/vcredist VisualCppRedist AIO是一个强大的开源工具…

作者头像 李华
网站建设 2026/5/1 15:50:29

gitbase开发者指南:如何扩展自定义函数和表

gitbase开发者指南&#xff1a;如何扩展自定义函数和表 【免费下载链接】gitbase SQL interface to git repositories, written in Go. https://docs.sourced.tech/gitbase 项目地址: https://gitcode.com/gh_mirrors/gi/gitbase gitbase是一个用Go编写的SQL接口工具&am…

作者头像 李华
网站建设 2026/5/1 15:46:05

如何利用VADER Sentiment构建高效的社交媒体情感分析系统

如何利用VADER Sentiment构建高效的社交媒体情感分析系统 【免费下载链接】vaderSentiment VADER Sentiment Analysis. VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to senti…

作者头像 李华