Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6613731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:15:12+00:00 2026-05-25T20:15:12+00:00

I want to store data such as { {"apple",15 } {"pear",12.5 } {"", 10

  • 0

I want to store data such as

{
 {"apple",15   }
 {"pear",12.5  }
 {"", 10       }
 {"", 0.45     }
}

Data will be plotted on a bar chart (string will be the legend and double will be the value)
Insert order is important.
Perfs don’t matter.
Strings could be duplicated or empty. (values could be duplicated too)

I need to get min and max values (easily if possible) to set the scale.

I use

List<KeyValuePair<string, double>> data = new List<KeyValuePair<string, double>>();
data.Add(new KeyValuePair<string,double>("",i));

Quite boring and unreadable.
Is there a cleaner way to do it ?

StringDoubleCollection data = new StringDoubleCollection();
data.add("apple",15);
data.add("",10);

double max = data.values.Max(); 
double min = data.values.Min();

if not how to get the max value of List<KeyValuePair<string, double>> without too much hassle

NameValueCollection looks nice but its a <string,string> I need a <string,double>

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:15:13+00:00Added an answer on May 25, 2026 at 8:15 pm

    To determine which data structure you really want, lets look at your usage patterns.

    • Insert order matters.
    • You don’t access your items by key.
    • You want min and max.

    A heap offers min or max, but doesn’t preserve order. A hash based dictionary also doesn’t preserve order. A List is actually a good choice for your data structure. It is available and offers excellent support.

    You can prettify your code by defining classes for both the data structure and your bar data. And you can add min/max functionality to the collection. Note: I didn’t use the Linq Min/Max functions, because they return the minimum value, not the minimum element.

    public class BarGraphData {
        public string Legend { get; set; }
        public double Value { get; set; }
    }
    
    public class BarGraphDataCollection : List<BarGraphData> {
        // add necessary constructors, if any
    
        public BarGraphData Min() {
            BarGraphData min = null;
            // finds the minmum item
            // prefers the item with the lowest index
            foreach (BarGraphData item in this) {
                if ( min == null )
                    min = item;
                else if ( item.Value < min.Value )
                    min = item;
            }
            if ( min == null )
                throw new InvalidOperationException("The list is empty.");
            return min;
        }
    
        public BarGraphData Max() {
            // similar implementation as Min
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to store data in string form to MySQL. I have created the
I want to store data with every request (what user viewed what page of
I want to store the data returned by $_SERVER[REMOTE_ADDR] in PHP into a DB
I want to store a data structure thats a table with one column Strings
hi i want to store textfield data in a variable but my code is
I want to store JSP session data in a custom store (the one I
I want to use Google spreadsheets to store data online so multiple people can
Hey, I want to store application configuration data. Currently, I'm using INIs but they
I want to temporary store some mapping data. The mapping is one to one.
I want to store a large amount of data onto my Arduino with a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.