leetcode不会-Rust-Notes:我的Rust笔记,将尝试尽可能详细

时间:2024-07-19 21:20:29
【文件属性】:

文件名称:leetcode不会-Rust-Notes:我的Rust笔记,将尝试尽可能详细

文件大小:58KB

文件格式:ZIP

更新时间:2024-07-19 21:20:29

系统开源

leetcode 不会我的锈笔记 重要笔记 所有 rust 项目都将从主函数运行。 就像在 C/C++ 或 Java 中一样。 默认情况下,Rust 中的变量是不可变的,以便在声明变量时在let之后使用mut使它们可变。 我所有的 Leetcode 都使用 Rust 跳到 Rust 命令行界面 cargo init : 在 floder 中初始化 Cargo 项目 cargo new --bin : 用给定的路径创建新的 Cargo cargo build :从源创建构建项目 carog run :从源代码构建和运行项目 cargo build --release : 为项目构建项目 rustc --version : 返回安装的 rust 编译器的版本 rustc : 编译特定的 rust 源文件 注释 一行注释是使用\\创建的 例子 // Single Line comments fn main () { println! ( "Hello World" ); } 使用/* Some comment */创建多行注释 例子 /* This i


【文件预览】:
Rust-Notes-master
----file.txt(37B)
----Cargo.lock(31KB)
----demo.py(44B)
----leetcode()
--------house-robber-iii.md(2KB)
--------MaximumSumofTwoNon-OverlappingSubarrays.md(2KB)
--------LargestRectangleinHistogram.md(1KB)
--------leetcode.md(2KB)
--------FindAndReplaceinString.md(3KB)
--------StoneGameII.md(2KB)
--------MaximalRectangle.md(1KB)
--------detect-pattern-of-length-m-repeated-k-or-more-times.md(2KB)
--------LongestContinuousSubarrayWithAbsoluteDiffLessThanorEqualtoLimit.md(2KB)
--------MissingElementinSortedArray.md(1KB)
--------RemoveComments.md(4KB)
--------maximum-number-of-coins-you-can-get.md(2KB)
--------DecodeString.md(2KB)
--------MaximumPointsYouCanObtainfromCards.md(2KB)
--------find-the-winner-of-an-array-game.md(2KB)
--------FindTwoNon-overlappingSub-arraysEachWithTargetSum.md(2KB)
--------make-the-string-great.md(2KB)
--------TimeNeededtoInformAllEmployees.md(4KB)
--------sequence-reconstruction.md(3KB)
--------GuessNumberHigherorLowerII.md(2KB)
--------DivideArrayinSetsofKConsecutiveNumbers.md(2KB)
--------bulb-switcher-iv.md(2KB)
----src()
--------example()
--------main.rs(780B)
--------others()
----Cargo.toml(322B)
----.gitignore(26B)
----README.md(24KB)

网友评论