HELP NEEDED TO UNDERSTAND ABOUT TIME COMPLEXITY (C#)
Posted by anahcar1@reddit | learnprogramming | View on Reddit | 11 comments
I want to learn about time complexity. If you guys have any resources, or even the YouTube video(languages: Hindi English) , could you pls share? C#
HolyPommeDeTerre@reddit
Are you referring to the time an algorithm takes to run?
AccomplishedEase1569@reddit
Yeah that's what time complexity is about! I learned most of this stuff from YouTube tutorials in English when I was starting with music software algorithms đ The basic idea is like O(n) notation that tells you how your code will slow down when data gets bigger
HolyPommeDeTerre@reddit
Yeah, I am just ensuring they aren't going in another direction.
After ensuring that, I was gonna start explaining big O for the complexity and then lean to hardware and parallelism. Because time is a specific dimension with specific expectations in different contexts for CS.
anahcar1@reddit (OP)
Pls explainn
neveralone59@reddit
Read up on time complexity in general. Donât search for âtime complexity c#â because it has very little to do with the language youâre using
anahcar1@reddit (OP)
Thanks
musclerythm@reddit
actually it's about the algorithms. search for it, don't take c# specifically.
anahcar1@reddit (OP)
Okay thank you
Beregolas@reddit
Just puck up any book on lahorithms, like this for example: https://jeffe.cs.illinois.edu/teaching/algorithms/
Every algorithm comes with it's own short O-notation analysis
NationsAnarchy@reddit
Just search for time complexity in general
Easy_Inspector_7@reddit
The concept of time complexity (analysis) is not directly related to C#, so you're better off learning the concept and then applying it (perhaps looking C# specific method implementations up)