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 8863363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:57:35+00:00 2026-06-14T15:57:35+00:00

Its weird,well i need to count characters from file, and in later computations use

  • 0

Its weird,well i need to count characters from file, and in later computations use that information, now its weird part, i wanted to check if my program is correctly countig appearance of each character so i compared my results with monodevelop matches from ctrl+f
for example for ‘i’ character my result is 518 monodevelop has 561 matches (with case sensitivity on), so maybe it coudl look like my programm does not count well but i made test and rewrited it to another file and again checked matches in mono develop now my results and monodevelop matches where same. Why is it happening ?

here is code

public Histogram (String nazwa)
    {
        histogram = new Dictionary<string,float>();
        StringBuilder plik = odczytPliku.odczyt(nazwa);
        n = 0;
        foreach(char w in plik.ToString())
        {
            if(!histogram.ContainsKey(new string(w,1)))
                histogram.Add(new string(w,1),1);
            else
                histogram[new string(w,1)]+=1;
            n++;
        }

    }
  • 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-06-14T15:57:37+00:00Added an answer on June 14, 2026 at 3:57 pm

    The following code will create a histogram of characters in a string. This assumes you’re passing in the string correctly.

    public Dictionary<char,int> Histogram( String myString )
    {
        Dictionary<char,int> hist = new Dictionary<char,int>()
    
        if( !String.IsNullOrEmpty(myString) )
        {
            for( int i = 0; i < myString.Length; i++ )
            {
                char c = myString[i];
    
                if(hist.ContainsKey(c))
                {
                    hist[c] = hist[c] + 1;
                }
                else
                {
                    hist.Add(c,1);
                }
            }
        }
    
        return hist;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Its extremely weird since the program is iterating the file! outfolder and infolder are
hello its really weird that a if and else statement is not working in
We are refactoring a weird system where within its backend, values that should be
well right now im trying to learn how to use the canvas tag on
In my IF statement, its kinda weird, cause every time my code loops in
This is a weird question but its been driving me bonkers for the last
Im having a weird issue here. Its probably just something stupid but I dont
I am noticing some weird behavior in my script, not sure why its occurring
I have a weird problem. I create this window, but its blank until i
It's weird that my app does not zoom in when running in the application

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.