[持續更新] C/C++ 常見面試問題統整

本文章有,共同編輯與時常更新的版本,會寫在 hackmd 上面 https://hackmd.io/pWi7pgvISWSSjZN0HOYLGg C 語言 Pointer Pointer of variable A variable hold the address (一個指向某個儲存位址的變數) Example: int val = 10; int * prt = &val 詳細可以參考 Mr. Open Gate 的文章 C/C++ - 常見 C 語言觀念題目總整理(適合考試和面試) Array and Pointer 的關係 在 C 語言中,處理字串一定會牽扯到 char pointer ,在基礎處理上要很注意 https://www.geeksforgeeks.org/difference-pointer-array-c/ https://www.geeksforgeeks.org/pointer-vs-array-in-c/ Function Pointer 設計目的: can be used to simplify code by providing a simple way to select a function to execute based on run-time values....

December 23, 2018 · 1 min · ykhorizon

[Codewars] Mumbling

Outline 問題範例 我的寫法 他人解法賞析 比較差異 LINQ String.Join String.Select 與 lambda 運算式 ...

October 26, 2017 · 2 min · ykhorizon

Matplotlib 基本介紹

Outline Outline Introduction Figure Axes Axis Artist Matplotlib, pyplot 和 pylab 傻傻分不清楚 關於使用 pyplot 的 code style Backend 是什麼? Reference ...

October 25, 2017 · 2 min · ykhorizon