what is the best way to compare int arrays b and c with a:
int a[] = {0,1,0,0,1};
int b[] = {0,1,0,0,1};
int c[] = {1,1,0,0,1};
b and c are just examples, assume they can be any combination of 0s and 1s.
I am trying to detect arrays identical to a. I have googled this for a while and have not found a satisfactory answer.
This is a beginners question I realise, thank you for your patience.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…