Irvin Lu

@yunfanlu

Joined on Mar 1, 2020

  • aberrant 異常 abhorrent 討厭的/可恨的 accentuate 強調/加重 attenuate 變弱/變薄 avarice 貪婪 aversion 反感 aspersion 誹謗
     Like 1 Bookmark
  • 一般 perennial 終年的 entice 誘惑 harsh 嚴厲的/粗糙的 marginally 勉搶 ambient 周圍 doom and gloom 前途黯淡 allegedly 據稱 intrude 侵入/進犯 susceptible 易受影響的
     Like 1 Bookmark
  • 易拼錯字 Apparently hypothesis convincing Furthermore 容易少一個r To elaborate a
     Like  Bookmark
  • 開頭 People often possess different viewpoints that 加複數 People often possess different perspectives on whether ... based on my experience and observation of life, 句首 (1) To begin with (2) In addition, 句型 place emphasis on ...
     Like  Bookmark
  • 好/正面 good excellent favorable superb 陳述 state indicate imply contend
     Like  Bookmark
  • 句型 it's conceivable that ... 可以預期 I fundamentally agree with... the statement raises a variety of issue about ... the issue of ... is a complex one, The saying is used to point out that … 這個說法用來指出常用在引用名人名言或者俚語後,用已表達作者自己的目的或立場 It is arbitrary to judge……according to…… 根據……來判斷……太武斷: 該句型幾乎是ARGUMENT作文中的上賓,一出手就力量驚人,具體操作相信並不困難。這裡要補充一下的是,在ISSUE中該句也可用來攻擊opposite points ,為避免俗套以及豐富句型,presumptuous可以用arbitrary, ridiculous, illegitimate, unpersuasive等等來替換。
     Like  Bookmark
  • 緩和/減輕 mitigate alleviate allay abate mollify mitigant relieve assuage deaden
     Like  Bookmark
  • 在馮紐曼架構(Von Neumann Architecture)下,電腦儲存系統設計成階級式的架構。 記憶體架構兩大原則 Temporal Locality Spatial Locality DRAM Dynamic Random Access Memory
     Like  Bookmark
  • 在STL容器,unordered_set或是unordered_map中,如果想要使用自己訂的資料結構當key值,會出現compile error。 這是因為unordered_map/set是使用std::hash去紀錄key值。 而C++ STL沒有你自己訂的結構的hash。 解決方法有兩種: 定義出std::hash 使用boost library 使用Boost Library
     Like  Bookmark
  • Operator Function & AND | OR ^
     Like  Bookmark
  • 一種指向某個儲存位址的變數。 變數宣告 int *ptr; int a = 10; int *ptr = &a; "&": 取址運算子 (Address-of operator) int a = 10;
     Like  Bookmark
  • C-style動態記憶體配置 定義在<stdlib.h>標頭檔中。 malloc function 原型為: void *malloc(size_t size); 例如:
     Like  Bookmark
  • Call by value 只是把value複製給對方 void swap(int a, int b) { int temp = a; a = b; b = temp; }
     Like  Bookmark
  • extern用法 為了讓多個檔案能存取同個變數,C++區分宣告(Declaration)以及定義(Definition)。 變數可以宣告很多次,但只能定義一次。 可以使用extern宣告而不定義。 extern int i; // 宣告但不定義i int i; // 宣告且定義i
     Like 1 Bookmark