algorithmsindotnet.blogspot.com
Algorithms In .NET: June 2012
http://algorithmsindotnet.blogspot.com/2012_06_01_archive.html
Algorithms In .NET. A space for self-education, for myself to explore various algorithms by working through the details. Saturday, June 30, 2012. The least intelligent sorting algorithm, it typically has the worst performance of sorting routines, and learns nothing to improve its actions as it traverse the array:. Int[] arrayToSort = { 11, 1, 22, 2, 33, 3, 44, 4, 55, 5, 66, 6, 7, 77 };. Public int[] Sort(int[] arrayToSort). Int max = arrayToSort.Length - 1;. CurrentMin = arrayToSort[counter];. ArrayToSor...
codedotnet.com
CodeDotNet :: Black Scholes Option Calculator
http://www.codedotnet.com/BlackScholes_European_Silverlight.aspx
RezScore Grader in Silverlight. Other Sites of Mine. Code VBA, .NET, SQL. Design Patterns in .NET. Algorithms in .NET. Options Pricing and Analysis Tool. Since the new version of this application using Silverlight does not run on some operating systems, e.g., iOS, and to provide a comparison, here is the old version of this application. The application can be run in Firefox on Linux (UNIX/X11-based systems), provided Moonlight.
codedotnet.com
CodeDotNet :: Verify USPS Mail
http://www.codedotnet.com/USPS_ZipCodeLookup.aspx
RezScore Grader in Silverlight. Other Sites of Mine. Code VBA, .NET, SQL. Design Patterns in .NET. Algorithms in .NET. Verify Address and Zip Code. The USPS enables verification services, so provided a properly constructed string, one can verify addresses and lookup zip codes and/or locations. I've created both forms and services using USPS's services, a mixture of a VB.NET class to construct the correct string, as well as return the data, either as a dataset, or via a web service as XML.
codedotnet.com
CodeDotNet :: Show City State
http://www.codedotnet.com/USPS_CityStateLookup.aspx
RezScore Grader in Silverlight. Other Sites of Mine. Code VBA, .NET, SQL. Design Patterns in .NET. Algorithms in .NET. The USPS enables verification services, so provided a properly constructed string, one can verify addresses and lookup zip codes and/or locations. I've created both forms and services using USPS's services, a mixture of a VB.NET class to construct the correct string, as well as return the data, either as a dataset, or via a web service as XML.
algorithmsindotnet.blogspot.com
Algorithms In .NET: Heap Sort
http://algorithmsindotnet.blogspot.com/2012/07/heap-sort.html
Algorithms In .NET. A space for self-education, for myself to explore various algorithms by working through the details. Tuesday, July 3, 2012. Heap Sort is interesting because the use of the 'heapify' method that creates a binary tree as a flat array. First, a binary tree, also known as a heap. For each node at a position (positionIndex), its 2 subnodes are in the following positions:. Int left = 2 * positionIndex 1;. Int right = 2 * positionIndex 2;. CommonMethods.Swap() function is a reusable class.
algorithmsindotnet.blogspot.com
Algorithms In .NET: August 2012
http://algorithmsindotnet.blogspot.com/2012_08_01_archive.html
Algorithms In .NET. A space for self-education, for myself to explore various algorithms by working through the details. Wednesday, August 1, 2012. An example of a hash-based search, although using dictionaries. The code is designed to manage lists of Person objects, with unique Id's as the key value, with a rudimentary hash function to assign to various lists. Useful for managing large unsorted lists. Divides the items into smaller hash-based buckets (divide and conquer). Private int Id;. Int[] idNumber...