ICode9

精准搜索请尝试: 精确搜索
  • [leetcode] 167. Two Sum II - Input Array Is Sorted2022-02-25 01:02:48

    题目 Given a 1-indexed array of integers numbers that is already *sorted in non-decreasing order*, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= index1 < ind

  • 剑指 Offer 11. 旋转数组的最小数字2022-02-23 21:31:46

    把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 给你一个可能存在 重复 元素值的数组 numbers ,它原来是一个升序排列的数组,并按上述情形进行了一次旋转。请返回旋转数组的最小元素。例如,数组 [3,4,5,1,2] 为 [1,2,3,4,5] 的一次旋转,该数组的最小值为1。

  • Java方法学习2022-02-23 13:01:36

    Java方法学习 何谓方法 Java方法是语句的集合,它们在一起执行一个功能 方法是解决一类问题的步骤的有序组合 方法包含于类或对象中 方法在程序中被创建,在其他地方被引用 设计方法的原则:方法的本意是功能块,就是实现某个功能的语句块的集合。设计方法的时候要保持方法的原子性,就

  • 可变参数java2022-02-20 23:04:06

    可变参数 JDK 1.5开始,java支持传递同类型的可变参数给一个方法 在方法声明中在指定参数类型后加一个省略号(...)。 一个方法中只能指定一个可变参数,它必须是方法的最后一个参数。任何的普通参数必须在它之前声明  public class Demo04 {     public static void mai

  • 学习笔记82022-02-20 21:00:57

    元组类型定义及操作 元组是序列类型的一种扩展 -元组是一种序列类型,一旦创建就不能被修改 -使用小括号()或tuple()创建,元素间用逗号分隔 -可以使用或不使用小括号 元组类型继承了序列类型的全部操作。 列表类型定义及操作 列表是序列类型的一种扩展,十分常见。 -列表是一种序列类型,创

  • Java方法05:可变参数(不定项参数)2022-02-11 00:02:33

    可变参数(不定项参数) 我们刚刚学习了方法的重载,可以根据不同的参数列表来调用同名的方法,这是在参数个数和参数类型确定的情况下。如果我们不知道参数的个数不知道参数的类型,或者参数列表的种类非常多需要重载很多次以至于工作量变得非常庞大,那该如何解决呢? JDK1.5开始,Java

  • 翻译练习 Day172022-02-10 22:31:12

    题目:Tetragon | JXNUOJ 翻译: Tetragon 3000ms 262144K 描述: You're given the centers of three equal sides of a strictly convex tetragon. Your task is to restore the initial tetragon. 给你一个严格的凸四边形的三个等边的中心。你的任务是恢复最初的四边形。 输入: The fi

  • 可变参数2022-02-09 22:04:50

    package Method;/*可变参数在方法声明中,在指定参数类型后加一个省略号(...)一个方法中只能指定一个可变参数,它必须是方法的最后一个参数,任何普通的参数必须在它之前声明 */public class Demon2 { public static void main(String[] args) { Demon2 demon2=new Demon2();

  • 刷题-旋转数组的最小数字2022-02-09 01:02:41

    一、题目要求     二、重点难点分析   1.首先它是一个升序排列的数组,并旋转了,以至于最小值右边都是小于numbers[right],最小值的左边都是大于numbers[right],所以当中间数小于numbers[right]时,说明此时的right并不是最小值,right要向左边靠,此时 右边界变为 right=mid;当中间数大

  • 希尔排序的递归写法2022-02-08 23:59:18

    package sort; public class ShellSort { public static void sortByRecursive(int[] numbers, int step) { // step 最小只能是1,此时表示相邻两个元素进行比较 if (step<1){ return; } for (int i = step; i < numbers.

  • 两数之和 II - 输入有序数组2022-02-08 16:04:00

    题目来源于leetcode两数之和 II - 输入有序数组 var twoSum = function(numbers, target) { //for循环 for(let i = 0 ; i< numbers.length ; i++){ let j = i + 1; while(j < numbers.length){ if(numbers[j] + numbers[i] == target)

  • Function.prototype.apply()2022-02-08 10:03:51

    最大最小值 const numbers = [5, 6, 2, 3, 7]; const max = Math.max.apply(null, numbers); console.log(max); // expected output: 7 const min = Math.min.apply(null, numbers); console.log(min); 数组合并 var array = ['a', 'b']; var elements = [0,

  • Sum is K(翻译)2022-02-06 15:02:00

    http://noi.openjudge.cn/english/15/ 描述 Given a sequence of N numbers. Find different numbers A and B in the sequence so that the sum of A and B equals to K. 输入 First line: two positive integers N (N <= 1000) and K (K <= 1000000). Second line: N posi

  • Python filter()2022-02-06 12:32:17

    In this tutorial, we will learn about the Python filter() function with the help of examples. The filter() function extracts elements from an iterable (list, tuple etc.) for which a function returns True. Example numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

  • LeetCode 0002 Add Two Numbers2022-02-06 11:02:50

    原题传送门 1. 题目描述 2. Solution 1: Iteration 1、思路 假设l1, l2均为3位数,对于阅读顺序: 百位、十位、个位,链表存储顺序: 个位、十位、百位,计算顺序与链表存储顺序一致,故遍历链表,模拟手工计算,设置进位即可。示例,见题目描述。 2、代码实现 /* 分析: 1. 整体的思

  • 英语题目作业(16)2022-02-05 22:02:40

    原题: Elevator  1000ms  32768K 描述: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the el

  • 【LeetCode】剑指 Offer II 006. 排序数组中两个数字之和2022-02-05 17:35:15

    class Solution { public: vector<int> twoSum(vector<int>& numbers, int target) { int length=numbers.size(); int left,right,cpl=length-1,m; int flag=0; vector<int> ans; for(int i=0;i<=length/2;++i) {

  • 剑指offer 排序数组中的两数之和2022-02-03 21:35:16

    力扣题目链接 跟两数之和好像啊 于是写了一个HashMap class Solution { public int[] twoSum(int[] numbers, int target) { int[] a = new int[2]; Map<Integer,Integer> map = new HashMap<>(); for(int i=0;i<numbers.length;i++){ if

  • average2022-02-03 16:34:44

    In colloquial language, an average is a single number taken as representative of a list of numbers. Different concepts of average are used in different contexts. Often "average" refers to the arithmetic mean, the sum of the numbers divided by ho

  • Children‘s Apples(http://noi.openjudge.cn/english/14/)2022-02-02 16:34:05

    原文: 描述 There are N children. Each child has a positive number, and the numbers are different from each other. Given the sum of all numbers of children. Find a possible assignment. 输入 Two positive integers N (N <= 10) and the sum (sum <= 10000). 输出 O

  • #leetcode1672022-02-01 17:03:30

    虎年第一天第一题 好久没写了,想说的话有好多,以至于写题解没用英文,但又没什么好说的,哎,说好的2021年终总结也没写,鸽王就是我了... 话不多说,进入正题! 题目描述 一开始我比较懵的是 给定下标从1开始的数组 和 最后一段字(是我断章取义了,理解成每个数每次只能遍历1次), 我觉得题目应该

  • 剑指 Offer 11. 旋转数组的最小数字2022-01-31 22:34:14

    https://leetcode-cn.com/problems/xuan-zhuan-shu-zu-de-zui-xiao-shu-zi-lcof/ 使用二分,左右指针,再mid和他们比。 https://www.acwing.com/solution/content/727/ class Solution { public int minArray(int[] numbers) { int n = numbers.length - 1;

  • c++PTAA1007(dp累加)2022-01-31 16:02:19

    Given a sequence of K integers { N 1 , N 2 , …, N K }. A continuous subsequence is defined to be { N i , N i+1 , …, N j } where 1≤i≤j≤K. The Maximum Subsequence is the continuous subsequence which has the largest sum of its elements. For example, gi

  • 11.旋转数组的最小数字2022-01-27 19:06:40

    第五天 查找算法 剑指 Offer 11. 旋转数组的最小数字 难度简单 把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 给你一个可能存在 重复 元素值的数组 numbers ,它原来是一个升序排列的数组,并按上述情形进行了一次旋转。请返回旋转数组的最小元素。例如,

  • B. Special Numbers(1100)2022-01-26 16:04:32

    #include<bits/stdc++.h> long long MOD=1e9+7; using namespace std; long long T,k,n,m,sum; int rec(int a,int b){ if(b==0){ return 1; } else { long long k=a; for(int i=1;i<b;i++){ k=(k*a)%MOD;

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

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

ICode9版权所有