contributed by <kevin550029
>
Balanced Ternary
以3為基數,使用 -1(T)
、0
、1
基本數位的進位
亦可表示為 -
、0
、+
32 | 31 | 30 | |
---|---|---|---|
5 = | + | - | - |
9 | +(-3) | +(-1) |
Ternary encoding of base-3 digits
在 Balanced Ternary 當中表示整數的方法同樣可以想成一個式子
其中:
在討論要怎把十進位直接轉成Balanced Ternary表示時,
碰到了些問題,最後找到相對應的演算法,如下
String output="";
while (n>0) {
rem = n%3;
n = n/3;
if (rem == 2) {
rem = -1;
n++;
}
output = (rem==0?'0':(rem==1)?'+':'-') + output;
}
解讀為當某位元餘數為2時 output 會輸出
-
並將其左邊的位元加1,再繼續進行轉換
Counting Proceeds: 0, +, + -, + 0, + +, + - -, + - 0, + - +, + 0 - (from 0 to 8)
Decimal | balance base-3 |
---|---|
0 | 0 0 0 |
1 | 0 0 + |
2 | 0 + - |
3 | 0 + 0 |
4 | 0 + + |
5 | + - - |
藉由-1的引入,不須額外位元能直接表示負數
Decimal | balance base-3 |
---|---|
-1 | 0 0 - |
-2 | 0 + - |
-3 | 0 + 0 |
-4 | 0 + + |
-5 | + - - |
ternary multiplexer
設定selector可得到相對應的輸出
unary functions
A unary function is a function that takes one argument
From wikiedipa
可以用來實做A+1的功能
可以用來實做A-1的功能
half-adder
Balanced ternary numeral system
Wikipedia-平衡三進位
zhanyangch 共筆
Wikipedia-Balanced ternary