递归原来可以so easy|-连载(3)

本期我们再通过几个例子,加深递归的理解和熟练度。

上期有一个练习题:用递归逆序输出一个包含整型数据的链表。

先完成这个练习题。

对于程序员来说,代码是最好的沟通工具,什么都不说,上代码:

public class Hello {    public static void main(String[] args) {LinkedList list=createLinkedList();//list.print(); 正序输出list.revertPrint();//逆序输出}   /*创建一个链表,用来测试*/public static LinkedList createLinkedList() {LinkedList list=new LinkedList();for(int i=11;i<=20;i++) {list.add(i);}return list;}
}package test;/*** 具有逆序输出功能的链表类*/
public class LinkedList {// 内部类Node,代表链表的节点private class Node {Node next; // 指针域public int data;// 数据域public Node(int data) {this.data = data;this.next = null;}}// ----public Node head = null; // 链表头// 向链表中插入数据public void add(int data) {Node nodeNew = new Node(data);if (null == head) {head = nodeNew;return;}Node pre = head;Node p = head.next;while (p != null) {pre = p;p = p.next;}pre.next = nodeNew;}// 正序输出public void print() {Node p = head;while (p != null) {System.out.print(p.data + " ");p = p.next;}}// 逆序输出public void revertPrint() {rP(head);}// 递归函数public void rP(Node node) {if (null == node)return;rP(node.next);System.out.print(node.data + " ");}
}

整数倒序输出

如:

输入整数1234,输出为4321

输入整数7890,输出为0987

解题:

可以这么来看:

先输出该数的个位数,

然后把此数/10后的到的商,再输出此商的个位。

以此递推下去,直到商为0( 也即最高位/10的商 )。

代码:

    public static void main(String[] args) {Scanner sc=new Scanner(System.in);System.out.println("请输入一个整数");int n=sc.nextInt();if(n==0) {System.out.println(0);return;}else if(n<0) {System.out.print('-');n=0-n;}p(n);}static void p(int n) {if(n==0)return;System.out.print(n%10);p(n/10);}

思考题:

输出一个正整数的各位数字之和。

例如:输入 1234,输出10。

参考整数逆序输出的思路。

走楼梯

问题描述

楼梯有N阶,上楼可以一步上一阶,也可以一次上二阶。编一个程序,计算共有多少种不同的走法。

解题:

分析一下:
一阶阶梯:只有1种走法
二阶阶梯:有2种走法: 一次走2个阶梯,或者2次都走一个阶梯
三阶阶梯:
有2种走法:
先走1个阶梯,则还剩3-1=2个阶梯,走法数等于二阶阶梯的走法数量
先走2个阶梯,则还剩3-2=1个阶梯,走法数等于一阶阶梯的走法数量
根据加法原理:f3 = f(3-1)+f(3-2)
四阶阶梯:
有2种走法:
先走1个阶梯,则还剩4-1=3个阶梯,走法数等于三阶阶梯的走法数量
先走2个阶梯,则还剩4-2=2个阶梯,走法数等于二阶阶梯的走法数量
根据加法原理:f3 = f(4-1)+f(4-2)
以此类推,得到计算公式为:
f(n)=f(n-1)+f(n-2)
f(1)=1
f(2)=2

代码:

    public static void main(String[] args) {Scanner sc=new Scanner(System.in);System.out.println("请输入一个正整数,代表楼梯阶数");int n=sc.nextInt();int step=stair(n);System.out.println(step);}static int stair(int n){if(n==1)return 1; //一阶阶梯,只有1种走法if(n==2)return 2; //二阶阶梯,有2种走法return stair(n-1)+stair(n-2);}

转载于:https://blog.51cto.com/13477015/2319353

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/389165.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Viewport3D 类Viewport3D 类Viewport3D 类

.NET Framework 类库Viewport3D 类更新&#xff1a;2007 年 11 月为三维可视内容提供呈现图面。命名空间&#xff1a; System.Windows.Controls程序集&#xff1a; PresentationFramework&#xff08;在 PresentationFramework.dll 中&#xff09;用于 XAML 的 XMLNS&#xf…

升级android 6.0系统

How to Fix errors by manually flashing Marshmallow update 镜像下载for nexus Factory image Step 1: Download the [Marshmallow factory image](http://www.theandroidsoul.com/download-mra58k-android-6-0-marshmallow-update-released-for-nexus-5-nexus-6-nexus-9-n…

AGC 022 B - GCD Sequence

题面在这里&#xff01; 锻炼脑子的小构造题。。。 一开始被 a[]<30000 且 序列 gcd 1所困扰&#xff0c;但是发现这并没有什么&#xff0c;因为我接下来发现了一种总是能构造出 序列和是6的倍数的方案。 首先如果 n3 的话输出样例&#xff0c;因为只有这种情况没法用我的方…

最接近原点的 k 个点_第K个最接近原点的位置

最接近原点的 k 个点In this article, I will be explaining to you one of the problems that you may find when tackling questions in data structures and algorithm. You will need some basic knowledge of data structures in order to understand the optimized solut…

网络浏览器如何工作

Behind the scenes of modern Web Browsers现代Web浏览器的幕后花絮 The Web Browser is inarguably the most common portal for users to access the web. The advancement of the web browsers (through the series of history) has led many traditional “thick clients”…

让自己的头脑极度开放

为什么80%的码农都做不了架构师&#xff1f;>>> 一. 头脑封闭和头脑开放 头脑封闭 你是否经常有这样的经历&#xff0c;在一次会议或者在一次小组讨论时&#xff0c;当你提出一个观点而被别人否定时&#xff0c;你非常急迫地去反驳别人&#xff0c;从而捍卫自己的尊…

简介DOTNET 编译原理 简介DOTNET 编译原理 简介DOTNET 编译原理

简介DOTNET 编译原理 相信大家都使用过 Dotnet &#xff0c;可能还有不少高手。不过我还要讲讲Dotnet的基础知识&#xff0c;Dotnet的编译原理。 Dotnet是一种建立在虚拟机上执行的语言&#xff0c;它直接生成 MSIL 的中间语言&#xff0c;再由DotNet编译器 JIT 解释映象为本机…

RecyclerView详细了解

关于RecyclerView大家都不陌生了&#xff0c;它的使用也越来越受欢迎&#xff0c;现在总体了解一下RecyclerView的作用&#xff0c;为什么会有RecyclerView呢&#xff0c;我用ListView也能干所有的事情啊&#xff0c;尺有所短&#xff0c;寸有所长&#xff0c;先来看看Recycler…

案例与案例之间的非常规排版

In 1929 the Cond Nast publishing group brought Russian-born Mehemed Fehmy Agha—who had been working for the German edition of Vogue magazine—to America as art director for House & Garden, Vanity Fair, and the senior edition of Vogue.1929年&#xff0c…

熊猫分发_熊猫新手:第二部分

熊猫分发This article is a continuation of a previous article which kick-started the journey to learning Python for data analysis. You can check out the previous article here: Pandas for Newbies: An Introduction Part I.本文是上一篇文章的延续&#xff0c;该文…

浅析微信支付:申请退款、退款回调接口、查询退款

本文是【浅析微信支付】系列文章的第八篇&#xff0c;主要讲解商户如何处理微信申请退款、退款回调、查询退款接口&#xff0c;其中有一些坑的地方&#xff0c;会着重强调。 浅析微信支付系列已经更新七篇了哟&#xff5e;&#xff0c;没有看过的朋友们可以看一下哦。 浅析微信…

view工作原理-计算视图大小的过程(onMeasure)

view的视图有两种情况&#xff1a; 内容型视图&#xff1a;由视图的内容决定其大小。图形型视图&#xff1a;父视图为view动态调整大小。 ### measure的本质 把视图布局使用的“相对值”转化成具体值的过程&#xff0c;即把WRAP_CONTENT,MATCH_PARENT转化为具体的值。 measur…

[转载]使用.net 2003中的ngen.exe编译.net程序

ngen.exe程序为.net 2003自带&#xff0c; 在&#xff1a;/windows/microsoft.net/framework/v1.1.4322目录下ngen.exe ngen能把.net框架的东西编译成机器码.... 网友&#xff1a;Visual Studio .NET 2003程序的运行速度怎么样&#xff0c;我有一个感觉&#xff0c;V…

基于Redis实现分布式锁实战

背景在很多互联网产品应用中&#xff0c;有些场景需要加锁处理&#xff0c;比如&#xff1a;秒杀&#xff0c;全局递增ID&#xff0c;楼层生成等等。大部分的解决方案是基于DB实现的&#xff0c;Redis为单进程单线程模式&#xff0c;采用队列模式将并发访问变成串行访问&#x…

数据分析 绩效_如何在绩效改善中使用数据分析

数据分析 绩效Imagine you need to do a bank transaction, but the website is so slow. The page takes so much time to load, all you can see is a blue circle.想象您需要进行银行交易&#xff0c;但是网站是如此缓慢。 该页面需要花费很多时间来加载&#xff0c;您只能看…

隐私策略_隐私图标

隐私策略During its 2020 Worldwide Developers Conference, Apple spent time on one of today’s hottest topics — privacy. During the past couple of years, Apple has been rolling out various public campaigns aiming to position itself as a company that respect…

Java中的数组

一、数组的定义type[] arrayName;type arrayName[]; 推荐第一种 二、数组的初始化 含义&#xff1a;所谓的初始化&#xff0c;就是为数组的数组元素分配内存空间&#xff0c;并为每个数组元素赋初始值 &#xff08;1&#xff09;静态初始化&#xff1a;arrayName new type[…

您一直在寻找5+个简单的一线工具来提升Python可视化效果

Insightful and aesthetic visualizations don’t have to be a pain to create. This article will prevent 5 simple one-liners you can add to your code to increase its style and informational value.富有洞察力和美学的可视化不必费心创建。 本文将防止您添加到代码中…

用C#编写的代码经C#编译器后,并非生成本地代码而是生成托管代码

用C#编写的代码经C#编译器后&#xff0c;并非生成本地代码而是生成托管代码。也就是说&#xff0c;程序集在打包时是连同CLR一起打包的。在客户端的机器上&#xff0c;CLR一行行的读取IL&#xff0c;在读取每行IL时&#xff0c;CLR利用JIT编译器将IL编译成本地的CPU指令。若要节…

figma 安装插件_彩色滤光片Figma插件,用于色盲

figma 安装插件So as a UX Designer, it is important to design with disabilities in mind. One of these is color blindness. It is important to make sure important information on your product is legible to everyone. This is why I like using this tool:因此&…