H.-H. PENG (Hsins)

@Hsins

🍻 一名居住於臺灣的軟體工程師,在別人年少有為的年紀只是年少有肥,馬齒徒增地漂過了慘綠少年時節,還未能風度翩翩卻已是大腹便便。

Joined on Jun 27, 2017

  • 目錄 Overview The feature of the container model is that every container shares the OS of the host it's running on. The major technologies behind modern containers include: kernel namespaces, control groups (cgroups), capabilities and more. Kubernetes is the industry standard platform for deploying and managing containerized applications. Older versions of k8s used Docker to start and stop containers. However, newer versions use containerd. Docker and The Container-Related Standards and Projects Docker The word Docker is a British expression meaning dock worker that referes to a person who loads and unloads cargo from ships.
     Like  Bookmark
  • 個人簡介 H.-H. PENG (Hsins) Software Engineer
     Like  Bookmark
  • 算法面試套路|雙重堆積(Two Heaps) 本篇內容主要為 Grokking the Coding Interview: Patterns for Coding Questions 的翻譯與整理,行有餘力建議可以購買該專欄課程閱讀並在上面進行練習。 重點整理 雙重堆積(Two Heaps) 策略:將元素分為兩部分,使用 最小堆積(min heap) 查找最小元素,使用 最大堆積(max heap) 查找最大元素 題型:給定元素集合可以被劃分成兩部分
     Like 1 Bookmark
  • 算法面試套路|原地反轉鏈表(In-place Reversal of Linked-List) 本篇內容主要為 Grokking the Coding Interview: Patterns for Coding Questions 的翻譯與整理,行有餘力建議可以購買該專欄課程閱讀並在上面進行練習。 重點整理 原地反轉鏈表(In-place Reversal of Linked-List) 策略:使用現有的節點物件實例,而不使用額外的記憶體 題型:樹的逐層順序遍歷
     Like 2 Bookmark
  • 算法面試套路|深度優先搜索(Depth-First Search, DFS) 本篇內容主要為 Grokking the Coding Interview: Patterns for Coding Questions 的翻譯與整理,行有餘力建議可以購買該專欄課程閱讀並在上面進行練習。 重點整理 深度優先搜索(Depth-First Search, DFS) 策略:使用 遞迴(recursion) 或透過 堆棧(stack) 追蹤遍歷過程的父節點 題型:樹的自根節點到葉節點遍歷
     Like 2 Bookmark
  • 算法面試套路|二分查找(Binary Search) 本篇內容主要為 Grokking the Coding Interview: Patterns for Coding Questions 的翻譯與整理,行有餘力建議可以購買該專欄課程閱讀並在上面進行練習。 重點整理 二分查找(Binary Search) 策略: 題型:排序陣列
     Like 1 Bookmark
  • 符號總覽 @ at, commercial at ! exclamation mark # pound, hash ~ tilde $ dollar % percent ^ caret & ampersand * star, asterisk
     Like  Bookmark