题目链接 恢复内容开始 题目链接:https://vjudge.net/problem/HDU-5667 题目意思:按照递推式求出第n项对p求余的结果(p为质数)。 Sequence HDU - 5667 Holion August will eat every thing he has found ...
分类:
其他好文 时间:
2020-03-09 01:37:59
阅读次数:
64
组合模式(Composite Pattern) 定义:又叫部分整体模式,是用于把一组相似的对象当作一个单一的对象。目的:将对象组合成树形结构以表示"部分-整体"的层次结构。场景:您想表示对象的部分-整体层次结构(树形结构),如:文件系统。 // 指令 let directive = { eat: { ...
分类:
编程语言 时间:
2020-03-05 13:52:32
阅读次数:
74
"Link" 题意: 求最大区间和所在区间是不是 $1 \sim n$ 思路: 设 $dp[i]$ 是以 $i$ 为右端的最大区间和 $dp[i]=max(dp[i 1]+a[i],a[i])$ 代码: ...
分类:
其他好文 时间:
2020-03-02 22:50:18
阅读次数:
84
一.多态 #类的多态 class Animal(object): #Animal类继承object def __init__(self,color): self.color = color def eat(self): print("动物在吃!") def run(self): print("动物在 ...
分类:
编程语言 时间:
2020-03-01 14:45:38
阅读次数:
66
一.类的继承 #类的继承 class Animal(object): #Animal类继承object def __init__(self,color): self.color = color def eat(self): print("动物在吃!") def run(self): print("动 ...
分类:
编程语言 时间:
2020-03-01 14:30:45
阅读次数:
86
接口:Animal.java package Factoryface;public interface Animal { public void eat(); public void sport();}实现类(举例两个):Cat.java package Model;import Factoryfa ...
分类:
其他好文 时间:
2020-02-28 11:50:54
阅读次数:
88
1 """ 2 Given an array of strings, group anagrams together. 3 Example: 4 Input: ["eat", "tea", "tan", "ate", "nat", "bat"], 5 Output: 6 [ 7 ["ate","ea ...
分类:
其他好文 时间:
2020-02-25 23:04:37
阅读次数:
68
题目: 题目描述: 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 示例: 输入:["eat","tea","tan","ate","nat","bat"], 输出:[ ["ate","eat","tea"], ["nat","tan"], ["bat"] ] ...
分类:
其他好文 时间:
2020-02-23 11:59:14
阅读次数:
93
多态 1 程序中的多态; 声明父类,实例化子类; 要建的类 对动物喂食 package com.lv.tai; public class Person { //给动物喂食 public void feed(Dog dog){ System.out.println("喂食"); dog.eat(); ...
分类:
其他好文 时间:
2020-02-20 00:06:37
阅读次数:
80
1.定义 类:类是抽象的,一类事物的共性的体现。 有共性的属性和行为。 对象:具体化,实例化。有具体的属性值,有具体做的行为。 一个类 对应N多个对象。 类包含属性以及方法。 class 类名: 属性 方法 定义一个类: class Preson: def eat(self): print("正在吃 ...
分类:
编程语言 时间:
2020-02-19 13:00:24
阅读次数:
86