0%

前言

大學專題有思考過類似的問題,並有實際去嘗試過才想寫這主題。

因為室內定位真的是一門很廣的學問,何況藍芽的訊號干擾太多了,實作起來能說是困難重重…

閱讀全文 »

前言

簡單記錄一下如何從空機到能正常使用的步驟

操作基本上使用 Windows作業系統

初次安裝

在開始安裝前請準備一台『讀卡機』

閱讀全文 »

前言

開始整理大學時期研究的筆記

也替自己的學習做一點紀錄

放個Linux吉祥物做開頭吧

Linux作業系統有發行很多種版本

例如:CentOS、Ubuntu…等都算是Linux的一種

但終端機用的指令通常都大同小異

也藉由這文章做個整理

閱讀全文 »

題目說明

Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.

Implement the MinStack class:

  • MinStack() initializes the stack object.
  • void push(int val) pushes the element val onto the stack.
  • void pop() removes the element on the top of the stack.
  • int top() gets the top element of the stack.
  • int getMin() retrieves the minimum element in the stack.
閱讀全文 »