码迷,mamicode.com
首页 >  
搜索关键字:list    ( 54897个结果
非结构化数据
rlist扩展包 设计目标:更方便地在R中操作list对象 特性: 提供一系列高阶函数,可以方便地对list对象中的元素进行映射(mapping)、筛选(filtering)、分组(grouping)、排序(sorting)、合并(joining)、更新(updating)、搜索(searching ...
分类:其他好文   时间:2016-05-10 23:18:13    阅读次数:307
第二章 R语言基础
二、操作基础 %%取余 %/%整数除法 (1)eigen(...)求解方阵的特征值和特征向量 (2)solve(D,A)求解DX=A (3)data<-list(...)取里面的对象data[["列名称"]];data[[下标]];data$列名称 (4)unlist(列表对象)把列表对象转化为向量 ...
分类:编程语言   时间:2016-05-10 22:00:01    阅读次数:433
Ubuntu国内源
ubuntu12.04添加国内软件源(163、sohu、ustc),编辑sources.list文件 sudo nano /etc/apt/sources.list 添加如下内容,保存然后sudo apt-get update. 如果是其它ubuntu版本,只需把precise改为相应的版本的名字。 ...
分类:系统相关   时间:2016-05-10 20:43:39    阅读次数:226
[LeetCode82]Remove Duplicates from Sorted List II
题目: Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given  ...
分类:其他好文   时间:2016-05-10 20:40:46    阅读次数:124
python中的 list (列表)append()方法 与extend()方法的用法 和 区别
append()方法使用 首先看官方文档中的描述: list.extend(L) Extend the list by appending all the items in the given list; equivalent to a[len(a):] = L. 翻译成汉语就是: 通过将所有元素追 ...
分类:移动开发   时间:2016-05-10 20:23:53    阅读次数:1122
C# 中DataTable转成模型List
C# 中DataTable转成模型List 引入using System.Reflection; 命名空间 使用注意实体类的属性名必须和DataTable的列名一致 使用: 模型: 代码: ...
分类:Windows程序   时间:2016-05-10 20:14:17    阅读次数:231
xml解析
本文讲的是访问服务器得到xml数据,然后解析xml数据保存到list集合中的过程 NewsInfo.java XmlToListUtil.java 待续 ...
分类:其他好文   时间:2016-05-10 18:27:09    阅读次数:116
Java List与数组之间的转换
1 数组转换为List 调用Arrays类的静态方法asList。 asList This method also provides a convenient way to create a fixed-size list initialized to contain several element ...
分类:编程语言   时间:2016-05-10 18:24:50    阅读次数:238
Java web项目使用webSocket
前端: 后端: 握手类: 配置类: 后端可以注册多个handler,如上图配置。 handler: 订阅的信息存储在内存中,形式为<session,List<data>>的键值对 存储工具类: 订阅工具类(subscribeBO):主要就是将接收到的websocket信息转成java对象 推送代码太 ...
分类:编程语言   时间:2016-05-10 18:14:10    阅读次数:373
leetcode 336. Palindrome Pairs
传送门 Given a list of unique words. Find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e. words[ ...
分类:其他好文   时间:2016-05-10 16:45:27    阅读次数:397
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!