上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 79 下一页
摘要: package LeetCode_284 /** * 284. Peeking Iterator * https://leetcode.com/problems/peeking-iterator/ * Design an iterator that supports the peek operati 阅读全文
posted @ 2021-07-28 22:00 johnny_zhao 阅读(21) 评论(0) 推荐(0) 编辑
摘要: /** * This problem was asked by Twitter. Implement an autocomplete system. That is, given a query string s and a set of all possible query strings, re 阅读全文
posted @ 2021-07-26 21:21 johnny_zhao 阅读(37) 评论(0) 推荐(0) 编辑
摘要: package LeetCode_110 /** * 110. Balanced Binary Tree * https://leetcode.com/problems/balanced-binary-tree/ * Given a binary tree, determine if it is h 阅读全文
posted @ 2021-07-12 11:15 johnny_zhao 阅读(17) 评论(0) 推荐(0) 编辑
摘要: package LeetCode_944 /** * 944. Delete Columns to Make Sorted * https://leetcode.com/problems/delete-columns-to-make-sorted/ * You are given an array 阅读全文
posted @ 2021-06-06 11:54 johnny_zhao 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 添加http代理 git config --global http.proxy "http://127.0.0.1:8001" git config --global https.proxy "http://127.0.0.1:8001" 这里的端口要根据自已在代理中设置的。 取消设置 git co 阅读全文
posted @ 2021-03-29 17:47 johnny_zhao 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: 什么是字符串? Rust的核心语言中只有一种字串类型:str,字符串slice,它通常以被借用的形式出现,&str。我们了解到字符串slice:它们是一些储存在别处的utf-8编码字符串数据的引用。比如字符串字面值被储存在程序的二进制输出中,字符串slice也是如此。 称作String的类型是由标准 阅读全文
posted @ 2021-03-07 21:40 johnny_zhao 阅读(623) 评论(0) 推荐(0) 编辑
摘要: Rust语言中的基础数据类型有以下几种: 整数型(Integer) 浮点数型(Floating-Point) 布尔型 字符型 复合类型 注意:Rust不支持++和--,因为这两个运算符出现在变量的前后会影响代码可读性,减弱了开发者对变量改变的意识能力。 整数型 整数型简称整型,按照比特位长度和有无符 阅读全文
posted @ 2021-03-03 13:53 johnny_zhao 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 指针(pointer)是一个包含内容存地址的变量的通用概念。这个地址引用,或“指向”(points at)一些其它数据。Rust中最常见的指针是之前介绍的引用(reference)。引用以&符号为标志并借用了他们所指向的值。除了引用数据没有任何其它特殊功能。它们也没有任何额外开销,所以应用得最多。 阅读全文
posted @ 2021-03-02 16:06 johnny_zhao 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 当我们编写大型程序时,组织代码显得很重要,因为你想在脑海中通晓整个程序,那几乎是不可能完成的。通过对相关功能分组和划分不同功能的代码,你可以清楚在哪里可以找到实现了特定功能的代码,以及在哪里可以改变一个功能的工作方式。 到目前为止,我们编写的程序都在一个文件的一个模块中。伴随着项目的增长,你可以通过 阅读全文
posted @ 2021-02-28 22:57 johnny_zhao 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 另一个没有所有权的数据类型是 Slice。Slice允许你引用集合中一段连续的元素序列,而不是引用整个集合。 我们看看一个编程小习题:写一个函数,该函数接收一个字符串,并返回在该字符串中找到的第一个单词。如果函数在该字符串中并未找到空格,则整个字符串就是一个单词,那应该返回整个字符串。 我们定义函数 阅读全文
posted @ 2021-02-27 23:17 johnny_zhao 阅读(237) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 79 下一页