Problem LeetCode Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t ...
分类:
编程语言 时间:
2020-09-17 20:29:16
阅读次数:
30
2. 两数相加 这题medium,但思路挺简单的。模拟下就可以 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), ...
分类:
其他好文 时间:
2020-09-17 19:08:34
阅读次数:
21
题目描述: This is the first problem for test. Since all we know the ASCII code, your job is simple: Input numbers and output corresponding messages. 输入: T ...
分类:
其他好文 时间:
2020-09-17 17:23:30
阅读次数:
51
题面 # include <iostream> # include <cstdio> # include <cstring> # define MAXN 35 int a[MAXN]; int f[MAXN][MAXN][MAXN]; // f[i][j][k] 二进制下 最高位为第 i 位,有 j ...
分类:
其他好文 时间:
2020-09-17 15:45:29
阅读次数:
24
同一个命名空间中,类只加载一份 AppClassLoader加载程序中自定义的类。无论加载多少次,只要是被AppClassLoader加载的,其Class信息hashcode都是相同的。 子加载器可见父加载器加载的类 到处都是例子。比如核心类库的类,AppClassLoader所加载的类,都能使用S ...
分类:
其他好文 时间:
2020-09-16 12:10:25
阅读次数:
33
numbers=[1,2,3,4,5]#1.最常见的for迭代器遍历:print("最常见的for迭代器遍历:")fornumberinnumbers:print(number)#2.while遍历,通过索引取值:print("while遍历:")i=0whilei<len(numbers):print(numbers[i])i+=1#3.for配合range遍历,类似于C语言的for语句遍
分类:
编程语言 时间:
2020-09-14 18:41:33
阅读次数:
38
增强for循环 用于遍历数组或集合,进行进一步操作 public class ForDemo01 { public static void main(String[] args) { int[] numbers = {1, 2, 3, 4, 5}; for (int num : numbers) { ...
分类:
其他好文 时间:
2020-08-27 11:45:47
阅读次数:
53
C 语言支持数组数据结构,它可以存储一个固定大小的相同类型元素的顺序集合。数组是用来存储一系列数据,但它往往被认为是一系列相同类型的变量。 数组的声明并不是声明一个个单独的变量,比如 number0、number1、...、number99,而是声明一个数组变量,比如 numbers,然后使用 nu ...
分类:
编程语言 时间:
2020-08-26 19:03:33
阅读次数:
68
Python基础编程 Author : AI菌 【内容讲解】 一、数据类型: 1、Numbers (数字) int (有符号整数) long (长整型,也可以代表八进制和十六进制) float (浮点型) complex (复数) 2、布尔类型 True False 3、String(字符串) 4、 ...
分类:
编程语言 时间:
2020-08-18 15:42:51
阅读次数:
86
题目描述 输入数字 n,按顺序打印出从 1 到最大的 n 位十进制数。比如输入 3,则打印出 1、2、3 一直到最大的 3 位数 999。 示例: 输入: n = 1 输出: [1,2,3,4,5,6,7,8,9] 题目链接: https://leetcode-cn.com/problems/da- ...
分类:
其他好文 时间:
2020-08-13 22:09:34
阅读次数:
65