本系列博客習(xí)題來(lái)自《算法(第四版)》,算是本人的讀書(shū)筆記捧搞,如果有人在讀這本書(shū)的抵卫,歡迎大家多多交流。為了方便討論实牡,本人新建了一個(gè)微信群(算法交流)陌僵,想要加入的,請(qǐng)?zhí)砑游业奈⑿盘?hào):zhujinhui207407 謝謝创坞。另外碗短,本人的個(gè)人博客 http://www.kyson.cn 也在不停的更新中,歡迎一起討論
知識(shí)點(diǎn)
- 最大公約數(shù)
- 兩數(shù)互質(zhì)的條件
1.1.30 數(shù)組練習(xí)题涨。編寫(xiě)一段程序偎谁,創(chuàng)建一個(gè) N×N 的布爾數(shù)組 a[][]。其中當(dāng) i 和 j 互質(zhì)時(shí)(沒(méi)有相同 因子)纲堵,a[i][j] 為 true巡雨,否則為 false。
1.1.30 Array exercise. Write a code fragment that creates an N-by-N boolean array a[][] such that a[i][j] is true if i and j are relatively prime (have no common factors), and false otherwise.
分析
見(jiàn)小專欄:點(diǎn)擊這里
答案
見(jiàn)小專欄:點(diǎn)擊這里
###測(cè)試用例
public static void main(String[] args) {
boolean[][] resultArray = boolArray(9);
for (int i = 0; i < resultArray.length; i++) {
System.out.println(Arrays.toString(resultArray[i]));
}
}
####視頻分析
[算法練習(xí)(12):數(shù)組練習(xí)(1.1.30)](http://www.miaopai.com/show/dO5HNHlRFYyBu990R9osi4OV7cX~hpcB5k32Nw__.htm)
###代碼索引
[ArrayExecise.java](https://github.com/kysonzhu/AlgorithmDemo4Demo/blob/master/src/com/kyson/chapter1/section1/ArrayExecise.java)
### 廣告
我的首款個(gè)人開(kāi)發(fā)的APP[壁紙寶貝](https://itunes.apple.com/cn/app/id1334013423)上線了席函,歡迎大家下載铐望。