Efficiently Inserting Many Rows into an Excel Spreadsheet
Describes how to use an O(log n) algorithm to dramatically improve the performance of inserting large numbers of rows into existing Excel spreadsheets, using VSTO and C#. Continue reading
Describes how to use an O(log n) algorithm to dramatically improve the performance of inserting large numbers of rows into existing Excel spreadsheets, using VSTO and C#. Continue reading
Development of a sorted closed-bucket hashtable class (a dictionary that allows duplicate keys) using binary search trees (BSTs) and the built-in SortedList