TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# Max and Min: Get Highest or Lowest Element

Use Max and Min from System.Linq. Get the highest or lowest elements.
Max, Min. In the city skyline we see the highest tower. In C# we call Max (and Min) from System.Linq to get the largest or smallest element. Each element is iterated in the search.LINQ
These methods can also be used with lambda expressions. The result of the lambda is used. Higher-order functions can make programs shorter (but sometimes slower and harder to read).Lambda
Max. This program instantiates an array of 4 integers on the heap. Next the Max method is called upon this array. Finally we use another version of Max that receives a lambda expression.

Return: The Max method returns 1 when called with no parameters. This is because 1 is the largest value in the program's array.

However: When the Math.Abs transformation is used the value 2 is returned because the absolute value of -2 is 2, and this is larger than 1.

Note: The original value is not returned. Instead the value transformed by the lambda expression is.

Math.Abs
C# program that uses Max method using System; using System.Linq; class Program { static void Main() { int[] array1 = { 1, -1, -2, 0 }; // Find maximum number. Console.WriteLine(array1.Max()); // Find maximum number when all numbers are made positive. Console.WriteLine(array1.Max(element => Math.Abs(element))); } } Output 1 2
Min. We want to find the minimum value in a collection (such as an array or List) in a simple way. With Min() we find the minimum element or the minimum value after a transformation.ArrayList

Here: This program instantiates an array of integers upon execution. Then, the Min() method is called on the array.

Finally: The Min() method is called again, but with a lambda expression that makes all values negative.

C# program that uses Min method using System; using System.Linq; class Program { static void Main() { int[] array1 = { 1, -1, 2, 0 }; // Find minimum number. Console.WriteLine(array1.Min()); // Find minimum number when all numbers are made negative. Console.WriteLine(array1.Min(element => -element)); } } Output -1 -2
Notes, above program. The first call to Min determines that -1 is the smallest integer. The second call changes the 2 to -2, so that is now the smallest integer.

Info: The values in the source array (array1) are not mutated. Min() provides a clear way to find the smallest value in a collection.

Also: You can provide a transformation function, which provides a mechanism for you to insert additional logic if needed.

Math.Max. The Math class contains some math methods like Max and Min that also find the lower or higher number. But these are simpler and only test 2 numbers.Math.Max, Min
A summary. The Max function can find either the maximum value in a collection, or the maximum value after a specific transformation is applied. Min returns the minimum value.
Notes. These methods are perhaps most useful with a lambda expression: this makes the computation adjustable. Other forms of delegates (not just lambdas) can be used.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf