博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#交错数组
阅读量:5144 次
发布时间:2019-06-13

本文共 953 字,大约阅读时间需要 3 分钟。

理论code:

private double[][][] CoordReconstruct(double[] arr )        {            double[] subSubArr=new double[2];            double[][] subArr=new double[yAxis+1][];            for (int i = 0; i < yAxis + 1;i++ )            {                subArr[i] = subSubArr;            }            double[][][] newArr=new double[xAxis+1][][];            for (int i = 0; i < xAxis + 1; i++)            {                newArr[i] = subArr;            }            int index = 0;            for (int j = 0; j < yAxis; j++)            {                for (int i = 0; i < xAxis; i++)                {                    for (int fla = 0; fla < 2; )                    {                        newArr[i][j][fla] = arr[index];                                               index++;                        fla++;                    }                }            }            return newArr;        }

转载于:https://www.cnblogs.com/maomiyouai/archive/2012/10/12/2721120.html

你可能感兴趣的文章
android%3cspan,Microsoft 365 Apps update channel name changes: iOS, Mac, and Android
查看>>
js生成GUID
查看>>
JdbcTemplate
查看>>
利用PreparedStatement预防SQL注入
查看>>
saltsack自动化配置day01:之SaltStack快速入门(一)
查看>>
剑指offer-----回溯和其他
查看>>
Java核心技术卷1-第三章-Java的基本程序设计结构
查看>>
从C++到Java的几点区别
查看>>
【牛客Wannafly挑战赛12】小H和圣诞树
查看>>
[AH2017/HNOI2017]单旋
查看>>
[SNOI2017]一个简单的询问
查看>>
【CF900D】Unusual Sequences
查看>>
[ZJOI2019]线段树
查看>>
[WC2018]通道
查看>>
LGP5495 Dirichlet 前缀和
查看>>
[PKUSC2018]神仙的游戏
查看>>
uoj#311 【UNR #2】积劳成疾
查看>>
【LGP5350】序列
查看>>
[清华集训]序列操作
查看>>
CF896C Willem, Chtholly and Seniorious
查看>>