摘要:
import scala.collection.mutable /* * 队列 * 操作受限的链表 * */ object QueueTest extends App { var q = mutable.Queue[String]() //1.入队 q.enqueue("java1") q.enqu 阅读全文
posted @ 2021-11-04 20:45
学而不思则罔!
阅读(36)
评论(0)
推荐(0)
摘要:
import scala.collection.mutable object MapReduceComplex extends App { var tp1 = ("Hello Scala Spark World ", 4) var tp2 = ("Hello Scala Spark", 3) var 阅读全文
posted @ 2021-11-04 20:43
学而不思则罔!
阅读(56)
评论(0)
推荐(0)
摘要:
说明:* 1.map使用高级函数时,注意map的元素类型为二元元组 tp:(dataType,dataType)* 2.map没有排序函数,如果要排序,必须先转成list** */ /* * 说明: * 1.map使用高级函数时,注意map的元素类型为二元元组 tp:(dataType,dataTy 阅读全文
posted @ 2021-11-04 20:42
学而不思则罔!
阅读(41)
评论(0)
推荐(0)
摘要:
/** 集合的高级计算(filter、map、flatten、flatMap、group、reudce、fold)* 说明* 1.map的元素类型为 二元元组 tp:(Any,Any)* 2.map没有排序函数,如果排序,需要先转成list* 1. 过滤* 遍历集合并从中获取满足指定条件的元组,返回 阅读全文
posted @ 2021-11-04 20:38
学而不思则罔!
阅读(166)
评论(0)
推荐(0)

浙公网安备 33010602011771号