From c92974c214bd858ffcf5c0d3e6d064ef2fca6010 Mon Sep 17 00:00:00 2001 From: Yinwei-Yu Date: Mon, 31 Mar 2025 12:26:10 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E9=98=B6=E6=AE=B5?= =?UTF-8?q?=E6=80=BB=E7=BB=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 ++-- ...30\266\346\256\265\346\200\273\347\273\223.md" | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 "source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" diff --git a/package.json b/package.json index 894859abe9c..27665f98a59 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "server": "hexo server" }, "hexo": { - "version": "7.0.0" + "version": "4.2.1" }, "dependencies": { "hexo": "^4.2.1", @@ -25,4 +25,4 @@ "hexo-renderer-stylus": "^1.1.0", "hexo-server": "^1.0.0" } -} +} \ No newline at end of file diff --git "a/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" "b/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" new file mode 100644 index 00000000000..6969e1569ca --- /dev/null +++ "b/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" @@ -0,0 +1,15 @@ +--- +title: 第一阶段总结 +date: 2025-03-31 12:17:55 +categories: + - 阶段总结 +tags: + - author:Yinwei-Yu + - repo:https://github.com/LearningOS/2025s-rcore-Yinwei-Yu +--- + +因为之前不久才参加过数据结构训练营,所以第一阶段相对简单,但是仍在完成过程中发现会写出有所有权和生命周期bug的代码. + +于是边做边看rust圣经,算是第二次学了,对第一次学的时候不够熟悉的地方进行复习 + +此外,最后十道算法题虽然之前已经做过,但是再做时仍有一定问题,有的题虽然能用过程式写出来,但是实现相当臃肿,需要借助ai工具学习更加简洁的函数式解决方法.函数式编程真的很优雅. From d23bcc62907ba5c5bbe14591cfea245e1d87efef Mon Sep 17 00:00:00 2001 From: Yinwei-Yu Date: Mon, 31 Mar 2025 12:34:53 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=88=87=E6=8D=A2=E5=88=86=E6=94=AF?= =?UTF-8?q?=E5=B9=B6=E4=BF=AE=E6=94=B9=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" "b/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" index 6969e1569ca..cfa15d11ce5 100644 --- "a/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" +++ "b/source/_posts/\347\254\254\344\270\200\351\230\266\346\256\265\346\200\273\347\273\223.md" @@ -13,3 +13,5 @@ tags: 于是边做边看rust圣经,算是第二次学了,对第一次学的时候不够熟悉的地方进行复习 此外,最后十道算法题虽然之前已经做过,但是再做时仍有一定问题,有的题虽然能用过程式写出来,但是实现相当臃肿,需要借助ai工具学习更加简洁的函数式解决方法.函数式编程真的很优雅. + +目前对于rust感觉异步编程这部分还比较困难,希望自己继续努力,积极完成第二阶段