Python 官方文档:入门教程 => 点击学习
题目一 解法 class Solution { public int fib(int n) { int[] arr = new int[31];
解法
class Solution {
public int fib(int n) {
int[] arr = new int[31];
arr[0] = 0;
arr[1] = 1;
for(int i = 2;i<=n;i++){
arr[i] = arr[i-2]+arr[i-1];
}
return arr[n];
}
}
解法
class Solution {
int index = 0;
int ans = 0;
public int kthSmallest(Treenode root, int k) {
method(root,k);
return ans;
}
void method(TreeNode root, int k){
if(root==null) return;
method(root.left,k);
index++;
if(index==k){
ans = root.val;
return;
}
method(root.right,k);
}
}
解法
class Solution {
public int minDepth(TreeNode root) {
if (root == null) {
return 0;
}
if (root.left == null && root.right == null) {
return 1;
}
int min_depth = Integer.MAX_VALUE;
if (root.left != null) {
min_depth = Math.min(minDepth(root.left), min_depth);
}
if (root.right != null) {
min_depth = Math.min(minDepth(root.right), min_depth);
}
return min_depth + 1;
}
}
到此这篇关于剑指Offer之Java算法习题精讲二叉树与斐波那契函数的文章就介绍到这了,更多相关Java二叉树与斐波那契函数内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: 剑指Offer之Java算法习题精讲二叉树与斐波那契函数
本文链接: https://lsjlt.com/news/142980.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0