- 博客(2)
- 收藏
- 关注
转载 Array、List、ArrayList、LinkedList比较
Array:内存中连续存储,查找速度快,赋值与修改元素简单。int[] array = new int[5];//如果数组元素类型为基本数据类型,在完成new 操作之后,数组中的元素会自动初始化为空值,可以直接使用,但是数组元素为引用类型,在完成new操作之后,没有给引用类型赋值,就直接使用数组中的元素,会产生运行时异常int[] array1 = new int[5] { 1, 3, ...
2018-08-10 13:44:36 630
转载 百度NLP工具使用——以分词为例
import urllib.requestimport urllibimport jsondef segment(data): token_url="https://openapi.baidu.com/oauth/2.0/tokengrant_type=client_credentials&client_id=%s&client_secret=%s" # 获取tok...
2018-05-08 10:59:13 5109
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人