Bashスクリプトを使用してコレクションのすべてのサブセットを印刷する方法。例: {} , {1} , {2} , {1,2} for A={1,2} これは私がすでに書いたものですが、いつもスクリプトにもっと良い方法があると思いました。また、印刷のみ可能です。メンバーが 1 ~ 2 人だが全部ではないサブセット
このスクリプトを完了または再構築するのを手伝っていただければ幸いです。
#!/bin/bash
# Created By: Amirreza Firoozi
# License : GPL3+
power() {
echo $(( $1 ** $2 ))
}
update(){
a=${SET[i]}
b=${SET[j]}
}
read -p "Please Enter the set like A={1,q,9} : " TSET
echo "$TSET" | sed -e 's/.*=//' -e 's/[{}]//g' -e 's/,/\n/g' > TSET.txt
MEM_NUM=$(cat "TSET.txt" | wc -l)
ZIR_NUM=$(power 2 $MEM_NUM)
mapfile -t SET <TSET.txt
for i in "" ${SET[@]};do
echo "{$i}"
done
RESIGN(){
i=0
j=1
}
RESIGN
m2(){
while [ 1 == 1 ];do
if [ $i == $(($MEM_NUM - 1)) ];then
break
fi
while [ "$j" != $MEM_NUM ];do
update
echo "{$a,$b}"
((j++))
done
((i++))
j=$(($i+1))
done
}
m2
RESIGN
ベストアンサー1
binary
各サブセットの表示関数として配列を使用します。
#!/bin/bash
# Prepare the indicator, set to all zeros.
binary=()
for (( i=0; i<=$#; i++ )) ; do
binary[i]=0
done
while (( ! binary[$#] )) ; do
# Print the subset.
printf '{ '
for (( j=0; j<$#; j++ )) ; do
(( i=j+1 ))
(( binary[j] )) && printf '%s ' ${!i}
done
printf '}\n'
# Increment the indicator.
for (( i=0; binary[i]==1; i++ )) ; do
binary[i]=0
done
binary[i]=1
done