ICode9

精准搜索请尝试: 精确搜索
  • 未知(有问题):不重复的全排列2022-09-11 22:32:11

    给定一个可包含重复数字的序列 nums ,按序列内字典升序返回所有不重复的全排列。 其中序列内字典升序指的是, 序列内从左到右的非降序排列,例如 nums=[1,2,3], 则因为[1,2,3] < [1,3,2], [3,1,2] < [3,2,1], [1,2,3]要先于[1,3,2]输出,[3,1,2]要先于[3,2,1]输出 输入例子1: [3,3,4]

  • 递归2022-08-14 10:30:08

      代码示例 package method; public class digui { public static void main(String[] args) { System.out.println(f(5)); } public static int f(int n){ if (n==1){ return 1;} else{ return n*f(n-1); }

  • 递归(比较重要)2022-07-18 22:03:58

      递归:A方法自己调用自己 递归结构:   递归主要包含两个部分   递归头:什么时候不调用自身方法,退出来的条件 如果没有,将会陷入死循环   递归体:什么时候需要调用自身方法     列子:   public static void main(String[] args) { System.out.println(diGui(5));}//递归pub

  • 1-100的递归累加2022-07-12 08:34:25

    1 public class DiGui { 2 public static void main(String[] args) { 3 DiGui diGui = new DiGui(); 4 System.out.println(diGui.add(1)); 5 public int add(int sum){ 6 if(sum == 100){ 7 return 100

  • 阶乘(n!)的算法2022-07-12 08:33:37

    1 public class DiGui { 2 public static void main(String[] args) { 3 DiGui diGui = new DiGui(); 4 System.out.println(diGui.multiply(10)); 5 public int multiply(int sum){ 6 if(sum==1){ 7 return 1; 8

  • java算法训练第十天2022-03-18 21:59:11

    目录 题库一、二叉树的三种遍历方式(递归思维)1.前序遍历2.中序遍历3.后序遍历 二、验证二叉搜索树1.递归解法2.中序遍历解法 总结 题库 一、二叉树的三种遍历方式(递归思维) 给你二叉树的根节点 root ,返回它节点值的 前序(中序,后序) 遍历。 1.前序遍历 原题 代码如下: pub

  • 【leetcode】1022. Sum of Root To Leaf Binary Numbers2022-01-11 23:32:12

    ou are given the root of a binary tree where each node has a value 0 or 1. Each root-to-leaf path represents a binary number starting with the most significant bit. For example, if the path is 0 -> 1 -> 1 -> 0 -> 1, then this could represent 

  • 【leetcode】938. Range Sum of BST2021-12-14 17:35:16

    Given the root node of a binary search tree and two integers low and high, return the sum of values of all nodes with a value in the inclusive range [low, high].   Example 1: Input: root = [10,5,15,3,7,null,18], low = 7, high = 15 Output: 32 Explan

  • 刷题日记(二)2021-10-03 20:00:41

    这次来点中等的,都是一些和回溯与递归相关的题目。 括号生成 数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且 有效的 括号组合。 有效括号组合需满足:左括号必须以正确的顺序闭合。 示例 1: 输入:n = 3 输出:["((()))","(()())","(())()","()(())","()()()"

  • 第一个人20岁,第二个人比第一个人大3岁,依次递推,请使用递归方法计算第10个人是几岁2021-09-11 16:03:11

    package bi.shi.demo; import org.junit.Test; /** * @program: bi_shi_test * @description: 第一个人20岁,第二个人比第一个人大3岁,依次递推,请使用递归方法计算第10个人是几岁 * @author: xin yi * @create: 2021-09-11 15:43 */ public class Demo04 { @Test p

  • python学习记录4-循环语句2021-07-05 18:01:26

        循环语句--for&&while   for循环 Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。语法如下: for iterating_var in sequence: statements(s) >>>def digui(m): >>> count = 1 >>> for i in range(1, m+1): >>> count *= i

  • C语言函数的递归调用2021-05-26 16:03:24

    一, 1,递归的基本概念: 程序调用自身的编程技巧称为递归。递归作为一种算法在程序设计语言中广泛应用。一个过程或函数在其定义或说明中有直接或间接调用自身的一种方法,它通常把一个大型复杂的问题层层转化为一个与原问题相似较小的问题来求解,递归策略只需少量的程序可描述出解

  • 递归2021-04-23 21:00:22

    题目描述 有序回文数是一种很特殊的数,像43211234,321123,现在我把11称为一阶回文数,2112称为二阶回文数,以此类推。 小平刚开始学递归,想用递归的方法输出一个n(<=9)阶的回文数。你可以帮助他吗? 输入 一个整型变量n,表示第n阶回文数。 输出 第n阶回文数 样例输入 3 样例输出 32112

  • 我的神、上帝以及老天爷2020-12-30 20:59:43

    HDU 2006’10 ACM contest的颁奖晚会隆重开始了! 为了活跃气氛,组织者举行了一个别开生面、奖品丰厚的抽奖活动,这个活动的具体要求是这样的: 首先,所有参加晚会的人员都将一张写有自己名字的字条放入抽奖箱中; 然后,待所有字条加入完毕,每人从箱中取一个字条; 最后,如果取得的字条上写

  • 深度(迷宫)12020-10-09 20:32:08

    #include <iostream> using namespace std; int migong[10000][10000];int sx,sy,ex,ey;int flag=0; void digui(int x,int y){ if(x==ex&&y==ey){ flag=1;return; } if(migong[x][y]==2){ return; } migong[x][y]=2; if(migong[x-1][y]==1){ digui

  • python 数据结构 理解迭代与递归 递归的实例 栈帧 函数调用2020-07-01 19:01:34

    # 递归的三个条件 # 基本结束条件 # 向基本结束条件演进 # 调用自身 # 理解递归# 递归就是把大问题一步步不断的化解为小问题,小问题解决后在一步步依赖回去解决大问题。# (1+3+5+7+9) #       -> (1+(3+5+7+9)) #                 ->(1+(3+(5

  • 兔生兔(斐波那契数列)2020-02-21 09:52:43

    import java.util.Scanner; public class 兔 { public static void main(String[] args) { int n=new Scanner(System.in).nextInt(); System.out.println(digui(n)); } private static int digui(int n) { int totle = 1; if (n==1||n==2) { totle = 1; } if (n&

  • 洛谷——P5739 【深基7.例7】计算阶乘2020-02-07 09:41:41

    题目描述 求 n!(n≤12),也就是 1×2×3…×n。 挑战:尝试不使用循环语句(for、while)完成这个任务。 输入格式 无 输出格式 无 输入输出样例 输入 #1 3 输出 #1 6 我的答案: 使用递归函数 #include<stdio.h> int main() { int n; scanf("%d",&n); long long fun_digui(int n)

  • 算法 - 递归和迭代2019-11-16 17:03:10

    递归和迭代算法深入分析              原文链接:https://blog.csdn.net/liujian20150808/article/details/49717427      递归的定义: 程序调用自身的编程技巧称为递归( recursion)。 迭代的定义: 迭代是重复反馈过程的活动,其目的通常是为了逼近所需目标或结果。每一

  • 二叉搜索树中第k小的元素(python实现)2019-08-29 19:08:44

    题目描述: 给定一个二叉搜索树,编写一个函数 kthSmallest 来查找其中第 k 个最小的元素。 说明: 你可以假设 k 总是有效的,1 ≤ k ≤ 二叉搜索树元素个数。 示例 1: 输入: root = [3,1,4,null,2], k = 1 3 / 1 4 2 输出: 1 示例 2: 输入: root = [5,3,6,2,4,null,null,1],

  • 简单二叉树2019-06-12 09:04:08

    #include"stdio.h"#include"stdlib.h"typedef struct node{ struct node *lchild; int data; struct node *rchild;}NODE; NODE * chushi(NODE *s){ s->data=1; s->lchild=s->rchild=NULL; return s;}NODE *creat(NODE *s,ch

  • python小白——进阶之路——day12天-———递归含义+斐波那契2019-05-12 23:44:17

    ###递归函数:自己调用自己的函数'''递:去归:回有去有回是递归'''# (1)最简单的递归函数def digui(n): print(n) if n >0: digui(n-1) print(n)digui(5)'''代码解析:去的过程:n = 5print(5) 5>0 digui(5-1) => digui(4) 执行到第12行,自己调用自己,代码暂定在12行,发生阻

  • python 函数-递归函数2019-05-11 17:54:26

      递归函数 1 #递归函数 2 3 def digui(num): 4 #1.打印num变量 5 print(num) 6 #2.检测num是否大于0 7 if num > 0: 8 #将num -1 传递给函数 9 digui(num - 1)10 else:11 #输出一行横线12 print('----------')13 #3.

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有