An

@yawu

Joined on Aug 28, 2023

  • contributed by <kk908676> Reviewed by BennyWang1007 倉庫並未包含指定 commit 4a2ff9f。 此份筆記不是讓你展示所有程式碼的地方,只展示部分即可。 Commit message 應再更詳細,包含如何實作等訊息,如 commit 3332488、b9c75d6、bc4a8de、690a6d1、72bc268。 Merge sort 的時間複雜度應為 $O(n\ log(n))$。 此筆記僅包含 queue.c 實作,其餘部分有時間可以慢慢補上。 開發環境
     Like  Bookmark
  • contributed by <kk908676> 軟硬體整合 參考 STM32F407 的 Reference Manual ARM Cross Compile Toolchain: sudo apt-get install arm-linux-gnueabi-gcc which arm-linux-gnueabi-gcc export PATH=/usr/bin:$PATH
     Like  Bookmark
  • contributed by <kk908676>. 第 1 週測驗題 測驗 一 : 程式碼運作原理 題目核心鏈結串列結構 #include <stddef.h> typedef struct list_item { int value; struct list_item *next;
     Like  Bookmark
  • contributed by kk908676 Data encryption using CLZ In order to ensure the security of data, data encryption is indispensable. This method uses CLZ as the basis of encryption and uses the XOR method. C code #include <stdio.h> #include <stdint.h> /* Counting leading zeros function */
     Like  Bookmark
  • Quiz4 of Computer Architecture (2023 Fall) Solutions Problem A Take a look at the circuit diagram provided below, along with the associated delays of its components: component delays $t_{AND}$
     Like  Bookmark
  • contributed by kk908676 Environment 1. Install sbt Follow the instructions from here 2. Install Java (If you have not downloaded before) $sudo apt install default-jdk 3. Install the dependent packages $ sudo apt install build-essential verilator gtkwave
     Like  Bookmark
  • contributed by kk908676 Question Selection I refer to the Find First String of 1-bits of a Given Length by CLZ from 林柏全 The following is the source code: #include <stdint.h> #include <stdio.h>
     Like  Bookmark