• All
  • Angular
  • CSS
  • database
  • GraphQL
  • HTML
  • JavaScript
  • Next.js
  • Node.js
  • Python
  • Ruby
  • TypeScript
  • WordPress
  • WordPress主機
  • WordPress外掛
  • WordPress架設網站
  • 前端筆記
  • 後端筆記
  • 演算法
  • 網站原理
  • 網站知識
  • 資工
  • 資料結構
  • 開發工具
  • 開箱
  • 閒聊
All
  • All
  • Angular
  • CSS
  • database
  • GraphQL
  • HTML
  • JavaScript
  • Next.js
  • Node.js
  • Python
  • Ruby
  • TypeScript
  • WordPress
  • WordPress主機
  • WordPress外掛
  • WordPress架設網站
  • 前端筆記
  • 後端筆記
  • 演算法
  • 網站原理
  • 網站知識
  • 資工
  • 資料結構
  • 開發工具
  • 開箱
  • 閒聊
Ruby String
Ruby

Ruby 教學 5 – Ruby String Object 介紹

Ruby String object 是最常用到的 object 之一,常用 “” 來宣告,這篇就來整理並介紹一下 Ruby String object 的特性和常用的 methods 吧!

Read More →
Ruby Range
Ruby

Ruby 教學 4 – Ruby Range Object 介紹

在 Ruby range 是一個連續數字或是字母的 object,常用 .. 或是 … 來代表某個範圍,ex: 1..5,代表 1 到 5 之間的每個數字 ( 包含 5 )。

Read More →
Ruby method
Ruby

Ruby 教學 3 – method, 基本 object 介紹

methods 類似 JavaScript 的 function,def 開頭,end 結尾:

Read More →
Ruby Loop
Ruby

Ruby 教學 2 – 基本語法:Output, Ruby Loop, Conditions

接著介紹一下 Ruby 的一些基本語法:輸出、迴圈、條件句等等。

Read More →
Ruby 教學
Ruby

Ruby 教學 1 – 環境架設及 Ruby 介紹

最近在學習 Ruby,稍微消化一下已經整理好的筆記,希望生出一系列教學文!

Read More →
Binary Search
演算法

搜尋演算法 2 – Binary Search ( 二元搜尋法 )

Binary search 是在已排序好的陣列中最常用的其中一個搜尋演算法。

Read More →
Linear Search
演算法

搜尋演算法 1 – Linear Search / Sequential Search

Linear search (線性搜尋),又稱為 sequential search,是最基本的搜尋演算法,通常用來搜尋尚未排列的資料。

Read More →
merge sort
演算法

排序演算法筆記 4 – Merge Sort (合併排序法)

Merge Sort (合併排序法) 是第一個要介紹的 efficient sort,和前面幾個排序演算法相比雖然會複雜一些,但時間複雜度相較之下也會比較好。 1. Merge Sort 方法一 …

Read More →
Insertion Sort
演算法

排序演算法筆記 3 – Insertion Sort (插入排序法)

Insertion Sort (插入排序法) 的原理也很直觀,將要排序的元素插入已經排列好的左側陣列

Read More →
Scroll to Top