简体   繁体   中英

Find the highest number in array , using while or for?

Please ai have a Questions , I need find the higghest value in array. To the array will people write name (textbox1) and money (texbox2). I have 2 buttons first button is save to the array and second write the name with the biggest money.

Code for save:

    string[] name = new string[50];
    int items = 0;
    int[] money = new int[50];

    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        try
        {
            Convert.ToInt32(textBox2.Text);
        }
        catch
        {
            name[items] = textBox1.Text;
            money[items] = Int32.Parse(textBox2.Text);
            items++;        
        }
    }

And to the button2 need search the biggest value and write name! Please help me

 private void button2_Click(object sender, EventArgs e)
 {
    int maxIndex = 0;

    for(int i = 0; i < 50; i++)
    {
        if (money[i] > money[maxIndex])            
            maxIndex = i;            
    }

    MessageBox.Show(name[maxIndex] + " has biggest value " + money[maxIndex]);
 }    

To get the Max int from your array you can use IEnumerable.Max :

money.Max();

But there could be more than one name with the same high money value, perhaps you need to handle this also, I think Dictionary would be your best option

private Dictionary<string, int> Names = new Dictionary<string, int>();

private void button1_Click(object sender, EventArgs e)
{
    int value = 0;
    if (int.TryParse(textBox2.Text, out value))
    {
        if (!Names.ContainsKey(textBox1.Text))
        {
            Names.Add(textBox1.Text, value);
        }
    }
}

private void button2_Click(object sender, EventArgs e)
{
    if (Names.Any())
    {
        int maxMoney = Names.Max(v => v.Value);
        var names = Names.Where(k => k.Value.Equals(maxMoney));
        foreach (var name in names)
        {
            // Names with the highest money value
        }
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM