collection接口:它是Java集合框架的一个跟接口,也是List、set和queue接口的父接口。同时它定义了可用于操作List、Set和Queue的方法 增删改查。 Map接口:它提供了一种映射关系,其中的元素是以键值对(key-value)的形式存储的。Map接口有一个重要的实现类Has ...
分类:
编程语言 时间:
2017-11-13 22:59:23
阅读次数:
186
信号报告 信号报告 题目内容: 无线电台的RS制信号报告是由三两个部分组成的: R(Readability) 信号可辨度即清晰度. S(Strength) 信号强度即大小. 其中R位于报告第一位,共分5级,用1—5数字表示. Unreadable Barely readable, occasiona ...
分类:
其他好文 时间:
2017-11-12 11:05:15
阅读次数:
567
生成器都是迭代器,迭代器不一定是生成器 list,tuple,dict,string:Iterable(可迭代对象) l = [1,2,3,4] d = iter(l) # l.__iter__() print(d) #<list_iterator object at 0x0000000000687 ...
分类:
其他好文 时间:
2017-11-07 14:28:43
阅读次数:
247
Stack & Queue Implementations Basic Sorting Algorithm Implementations package cn.edu.tsinghua.stat.mid_term; /** * Created by shuaiyi on 04/11/2017. * ...
分类:
编程语言 时间:
2017-11-05 16:33:37
阅读次数:
152
1、高阶函数 将函数当成参数传递的一种函数 #!/usr/bin/env python def fun(x,y,f): return f(x)+f(y) print(fun(-8,11,abs)) # python 7_4.py 19 map()函数 格式:map(function, iterabl ...
分类:
其他好文 时间:
2017-11-03 00:14:35
阅读次数:
120
1 public class DownLoadFile 2 { 3 public string FileName { get; set; } 4 5 } 6 /// 7 /// 下载线程队列 8 /// 9 public class DownLoadQueueThread : Que... ...
分类:
编程语言 时间:
2017-11-02 13:15:03
阅读次数:
158
官网:https://github.com/rholder/guava-retrying Maven:https://mvnrepository.com/artifact/com.github.rholder/guava-retrying 下面示例是基于Spring Boot的,但是都可以用于Spr ...
分类:
编程语言 时间:
2017-11-01 16:29:09
阅读次数:
346
160. Intersection of Two Linked Lists Write a program to find the node at which the intersection of two singly linked lists begins. For example, the f ...
分类:
其他好文 时间:
2017-10-29 17:36:44
阅读次数:
85
list list是一个有序的集合,序号从0起编,一个list中可以包含多种类型的数据 list转换列表 字符串,元组,列表 > 都可以转换成列表,转换成列表都是可以被for循环的 基本操作:索引 切片 追加 删除 长度 循环 包含 列表的类库功能 List.append(x) 添加一个元素到列表末 ...
分类:
编程语言 时间:
2017-10-28 01:06:04
阅读次数:
274
from collections import deque# 双向队列[有序序列] (封装list)def deques(): # 双向队列,线程安全,队列两端添加和弹出复杂度为O(1),效率很高 # 创建 lists = ["A", "B", "C", "D", "E"] # <class 'li ...
分类:
编程语言 时间:
2017-10-25 18:07:21
阅读次数:
194