Java兩種方法將int型轉化為十六進製制

2021-09-10 14:32:36 字數 687 閱讀 6348

public

class

hex}

/** * 將乙個整形化為十六進製制,並以字串的形式返回

*/private

final

static string[

] hexarray =

;public string bytetohex

(int n)

int d1 = n /16;

int d2 = n %16;

return hexarray[d1]

+ hexarray[d2];}

}

10系統方法:a

10自定義方法:0a

11系統方法:b

11自定義方法:0b

12系統方法:c

12自定義方法:0c

13系統方法:d

13自定義方法:0d

14系統方法:e

14自定義方法:0e

15系統方法:f

15自定義方法:0f

16系統方法:10

16自定義方法:10

17系統方法:11

17自定義方法:11

18系統方法:12

18自定義方法:12

19系統方法:13

19自定義方法:13

建立樹型的兩種方法

建立父節點樹形陣列 引數 ar 陣列,鄰接列表方式組織的資料 id 陣列中作為主鍵的下標或關聯鍵名 pid 陣列中作為父鍵的下標或關聯鍵名 返回 多維陣列 function find parent ar,id id pid pid return t 建立子節點樹形陣列 引數 ar 陣列,鄰接列表方式...

java判斷回文的兩種方法

第一種 面向過程 從字串str.length 2開始向兩端移動進行對比 boolean用來確定乙個返回值判斷是否回文 scanner input new scanner system.in tryif c false system.out.println integer is not a palin...

LCA兩種方法

lca least common ancestors 即最近公共祖先,是指在有根樹中,找出某兩個結點u和v最近的公共祖先。模板題 anc i j 表示第i個點的2 j的祖先的標號 整個過程就是兩個點往上跳到同一深度,再一起往上跳找到lca include include using namespac...