- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我有这段代码可以从 txt 中对虚构的人口普查数据进行排序。文件:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
class Program
{
const int SIZE = 900;
const int SIZEDISTRICT = 22;
const int RANGE = 5;
static void Main()
{
//These arrays will hold the split data from a text file.
int[] districtDataD = new int[900];
string[] districtDataG = new string[900];
string[] districtDataM = new string[900];
int[] districtDataA = new int[900];
//countDistrict will hold how many hypothetical people in each hypothetical district and
//ages will hold how many hypothetical people between certain hypothetical ages.
int[] countDistrict = new int[SIZEDISTRICT];
int[] ages = new int[RANGE] { 0, 18, 30, 45, 65};
//Modules
ReadFile(districtDataD, districtDataG, districtDataM,districtDataA);
CountPopulation(districtDataD, countDistrict);
AgeRanges(districtDataA, ages);
DisplayData(districtDataD, districtDataA, ages);
}//End Main
//This module splits and inserts the data into the four first arrays
static void ReadFile(int[] districtDataD, string[] districtDataG, string[] districtDataM, int[] districtDataA)
{
string[] lines = File.ReadAllLines("census.txt");
int i = 0;
while (i < SIZE && i < districtDataD.Length)
{
foreach (string line in File.ReadAllLines("census.txt"))
{
string[] parts = line.Split(',');
districtDataD[i] = int.Parse(parts[0]);
districtDataG[i] = parts[1];
districtDataM[i] = parts[2];
districtDataA[i] = int.Parse(parts[3]);
i++;
}
}
}
//This module counts how many hypothetical people are in each fictional district
static void CountPopulation(int[] districtDataD, int[] countDistrict)
{
int i = 0;
for (i = 0; i < districtDataD.Length; i++)
{
if (districtDataD[i] > 0 && districtDataD[i] < districtDataD.Length)
{
countDistrict[districtDataD[i]]
++;
}
}
}
//This module sorts the ages into 0-18, 19-30, 31-45, 46-65, and 65 and up
private static void AgeRanges(int[] districtDataA, int[] ages)
{
int idx = 0;
for (idx = 0; idx < districtDataA.Length && ages[idx] > districtDataA[idx]; idx++)
{
ages[idx] = districtDataA[idx];
}
}
//This module displays the data
static void DisplayData(int[] countDistrict, int[] ageDistrict, int[] ages)
{
int index = 0;
for (index = 0; index < countDistrict.Length; index++)
{
Console.WriteLine(" District {0}: {1}", index + 1, countDistrict[index]);
}
int x = 0;
for (x = 0; x < ageDistrict.Length; x++)
{
Console.WriteLine("Ages under {0} : {1}", ages[x], ageDistrict[x]);
}
}
}
我得到索引越界错误,但我不知道在哪里以及如何找到它。
文本。文件目前看起来像这样,但会扩展到包括更多,大约 100 个左右。 900只是作为上限。
21,f,s,14
41,f,m,22
12, 米, 秒, 12
11, f, s, 8
29, 米, 米, 4
6、米、秒、12
9, f, s, 2
30, f, s, 1
最佳答案
如果您不知道数组的长度,请改用集合。这将使您的文件大小与长度无关。使用数组,您必须设置数组的长度,据我所知,它可以根据文件而改变 - 如果没有正确实现,这将始终给您带来索引越界的困难。使用集合可以避免这些问题
List<int> districtDataD = new List<int>();
然后您可以将项目添加到此集合中,例如:
districtDataD.Add(1);
关于c# - 在 C# 中识别索引越界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15872768/
我最近才开始学习 Clojure,所以很抱歉,如果这有点初级: 有人可以向我解释一下两者之间的区别吗: => (def a (lazy-cat [0]
我有一些看起来像这样的数据: X = [[1,2,3,4],[01010],[-1.6]] y = [[4,2]] 我正在尝试使用 tflearn 在这些数据上训练神经网络。我使用的是 TFlearn
我的代码有问题。 我正在尝试从 .txt 文件中提取 channel 名称。我不明白为什么方法 line.split() 给我返回一个长度为 0 的数组: 有人可以帮助我吗? 这是文件.txt: --
def sigmoid(z): # complete the code z = np.asarray(z) if z.ndim == 0: return(1/(1+np.exp(-z))) e
我在访问 3d 数组内的值时遇到问题。有时它给出正确的值,但有时它给出随机的数值。数组内不存在。 import java.util.*; public class Main { public
我有一段代码,执行时会出现此错误。而且我比较新,我似乎无法解决问题。 错误:2011-09-06 12:31:06.094 ForceGauge[266:707] CoreAnimation:忽略异常
我正在尝试限制 http://www.liftdesignphoto.com/test/ 中的滚动因为它让电梯超出了界限。 有没有办法重新计算位置,使其不越界? (也许使用 %)。 谢谢 最佳答案 假
我正在尝试遍历 6 个“国际象棋”棋子的列表。每轮他们移动一个随机数量,如果他们落在另一个上,他们就会“杀死”它。 问题是,当我的 vector 中的最后一 block 杀死另一 block 时,我收
NumberPicker serviceWheel = (NumberPicker) findViewById(R.id.serviceSelector); serviceWheel.setMaxVa
我正在尝试使用 GridLayout 重现此计算器布局 但这就是我用我尝试过的代码得到的结果。 事实上,在设备上情况会变得更糟,它会削减更多必须跨越两行的最后一个相等按钮。
运行测试脚本时出现“标签越界”错误。将注释值与类数进行比较时,confusion_matrix 函数会抛出错误。在我的例子中,注释值是一个图像(560x560)和 number_of_classes
什么是 OOL(越界)代码?我在 ION 编译器中找到了它,但无法理解发生了什么。 bool CodeGeneratorShared::generateOutOfLineCode() { for
这是我正在研究的有趣的事情。 varray.c: static GLint vertices[] = {25, 25, 100, 325,
我的程序将文件读取到字节数组中,然后尝试从该文件中提取 bmp 图像。问题是我遇到了越界错误。 { public static void main( String[] args ) {
我有一个 UITableView,它由从 XML 提要解析的数据数组填充。我正在努力寻找此错误的原因,并想知道是否有人可以帮助我。该错误不会经常发生。它仅在数组数量很大时发生,例如 10-15 个对象
public class GameEntry { private String name; private int score; public GameEntry(String
我遇到了 Storyboard的问题(至少有点惊讶)。 我有一个 ViewController,它包含一个容器 View 以及各种 ImageView 。自然地,选择的 ImageView 决定了容器
我正在尝试为一些 textfield 设置动画。即在屏幕外开始动画并移动到屏幕中央。但就我而言,动画从中心开始并超出 bounds。当我在 viewWillAppear/viewDidAppear 中
closeTs在struct tic给我一个错误 - tsP=0x66 .我尝试从 oracle 条目中填充它,如果没有,我尝试分配一个值。但我在 fillFields 中访问错误.有人可以给我提示
public class Registration { public static void main(String[] args) { final String MY
我是一名优秀的程序员,十分优秀!