📌  相关文章
📜  将数组向左移动 4 个单元格 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:26.759000             🧑  作者: Mango

代码示例1
public class LinearArray{
    public static void main(String [] args){
        int [] b = {10, 20, 30, 40, 50, 60};
        shiftLeft(b,4);
        printArray(b); // This Should Print: { 40, 50, 0, 0, 0, 0 }; 
    }

    public static void shiftLeft(int [] source, int k){
        for(int i=0,j=i+k;i