C語言數組元素的左移、右移

想到數組元素的移動,我最初的想法是這樣的。算法 貼代碼:編程 for(i = 0; i < it_Length - it_Steps; i++) { if(it_Direction == -1) { Array[i] = pt_Array[i + it_Steps]; } else { Array[i + it_Steps] = pt_Array[i]; }
相關文章
相關標籤/搜索