搜索

排序方式
13 个文档
  • pdf 文档 Hello 算法 1.2.0 简体中文 Kotlin 版

    0 码力 | 382 页 | 18.48 MB | 1 年前
    3
    本书旨在通过清晰易懂的动画图解和可运行的代码示例,使读者理解算法和数据结构的核心概念,并能够通过编程来实现它们。主要内容包括复杂度分析、数据结构和算法三部分,涵盖了算法学习的入门知识。书中强调手脑并用的学习方式,建议读者运行源代码并亲自敲代码,以加深理解。同时,作者提出了算法学习的三个阶段,重点介绍了阶段一的内容,帮助读者高效展开后续学习。
  • pdf 文档 Hello 算法 1.2.0 繁体中文 Kotlin 版

    0 码力 | 382 页 | 18.79 MB | 1 年前
    3
    《Hello 算法 1.2.0 繁体中文 Kotlin 版》旨在帮助读者系统学习数据结构与算法的基础知识,通过动画图解和一键执行的代码示例,引导读者理解和应用相关概念。文档涵盖了数组、链表、栈、队列、哈希表、树、堆、图等数据结构,以及排序、分治、回溯、动态规划、贪心等算法。书中强调手脑并用的学习方式,结合实际案例和代码实现,帮助读者构建完整的知识体系。文档还提到了优先队列和堆的常见应用,如获取最大的 k 个元素等。
  • pdf 文档 Hello 算法 1.1.0 Kotlin版

    0 码力 | 381 页 | 18.47 MB | 2 年前
    3
    本书旨在通过动画图解和可运行的代码示例,帮助读者理解算法和数据结构的核心概念。内容涵盖复杂度分析、基本数据类型与数据结构(如数组、链表、栈、队列、哈希表、树等)、常见算法(如搜索、排序、分治、回溯、动态规划、贪心等)的原理与应用。书中还提供了算法学习路线,分为入门、刷题和知识体系搭建三个阶段,适合算法初学者使用。
  • pdf 文档 Kotlin 1.4 language features

    0 码力 | 69 页 | 3.29 MB | 2 年前
    3
    文档介绍了Kotlin 1.4版本的主要新特性,包括SAM转换、显式API模式、尾随逗号、在when表达式中使用break和continue、混合命名和位置参数、新的类型推断以及统一的空值检查异常。这些改进提升了语言的质量和性能,并为开发者提供了更强大的工具支持。
  • pdf 文档 Kotlin 1.2 Language Documentation

    0 码力 | 333 页 | 2.22 MB | 2 年前
    3
    Kotlin 1.2版本引入了多项新功能和改进,包括新增的数学运算API,支持常量、三角函数、双曲函数、指数、对数、舍入、符号和绝对值、比较、二进制表示等功能。此外,还增强了对BigInteger和BigDecimal的操作,新增了序列和集合操作(如windowed、chunked、zipWithNext、fill、replaceAll、shuffle等)。文档还介绍了使用lateinit修饰符支持顶级属性和局部变量,改进了内联函数的默认参数功能,并对反射API进行了调整以支持Java 9。同时,Kotlin在Android开发方面表现优异,提供了高效的开发工具和丰富的库支持。
  • pdf 文档 Kotlin language specification Version 1.9-rfc+0.1

    0 码力 | 310 页 | 1.39 MB | 2 年前
    3
    The document is the Kotlin Language Specification version 1.9-rfc+0.1, which provides detailed information about the Kotlin programming language. It highlights Kotlin's multiplatform capabilities, including compilation to JVM, JS, and Native platforms. The specification covers fundamental aspects of Kotlin, such as its type system, syntax, and grammar. Key features include null safety, gradual and flow typing, and support for both object-oriented and functional programming paradigms. The document also addresses compatibility considerations, experimental features, and platform-specific implementations.
  • pdf 文档 Kotlin language specification Version 1.9-rfc+0.1

    0 码力 | 38 页 | 358.59 KB | 2 年前
    3
    The document provides a detailed specification of the Kotlin language, including syntax grammar, lexical grammar, documentation comments, and identifier rules. It covers aspects such as annotations, multiline string handling, identifier escaping, and platform-specific restrictions. The specification also includes rules for keywords, operators, and string modes.
  • pdf 文档 Kotlin 官方文档中文版 v1.9 推荐

    0 码力 | 2049 页 | 45.06 MB | 2 年前
    3
    文档详细介绍了Kotlin 1.9版本的兼容性指南,包括语言版本的移除、新功能的添加以及编译器错误的修正。主要内容包括移除对1.3语言版本的支持,新增按名称获取正则表达式捕获组的公共函数,禁止在内联函数参数上调用扩展函数,以及禁止调用命名为'suspend'的中缀函数等问题。
  • pdf 文档 Coroutines in Kotlin

    0 码力 | 39 页 | 1.01 MB | 2 年前
    3
    The document discusses the implementation and design of coroutines in Kotlin. It covers the motivation behind coroutines, compares solutions in other languages, and explains Kotlin's approach. The document highlights how coroutines are compiled into state machines, ensuring efficient runtime performance with minimal allocation. It also addresses exception handling and the concept of serializable coroutines. The content emphasizes the flexibility and efficiency of Kotlin's coroutines, providing insights into their underlying mechanisms and practical applications.
  • pdf 文档 Kotlin 入门学习笔记整理

    0 码力 | 8 页 | 5.41 MB | 2 年前
    3
    文档主要介绍了Kotlin编程语言的基础知识,包括构造函数的定义、数据类型的使用、静态函数的三种定义方式、变量和方法的声明、循环结构的实现、页面跳转的处理方法,以及Kotlin与Java在类型处理、空值处理、内部类和接口实现等方面的差异。此外,文档还涉及了Kotlin中伴生对象的使用、单利模式的实现、拓展函数的使用、匿名内部类的定义以及Kotlin与Java的对比示例。
共 13 条
  • 1
  • 2
前往