Algorithms and Data Structures

As we learn in computer science classes, global optimizations (such as algorithm and data structure choices) determine in large part the overall performance of our programs. For larger values of "n," or the number of input elements, the complexity of running time can dominate any local optimization concerns. This complexity is expressed in O-notation, where complexity or "order" is expressed as a function of n. Table 10.1 shows some examples.

Table 10.1. Run-Time Complexity of Classic Algorithms [12] , [13]
Notation Name Example
O(1) constant array index, simple statements
O(log n ) logarithmic binary search
O( n ) linear string comparison, sequential search
O( n log n ) n log n quicksort and heapsort
O( n 2 ) quadratic simple selection and insertion sorting methods (two loops )
O( n 3 ) cubic matrix multiplication of nxn matrices
O(2 n ) exponential set partitioning (traveling salesman )
[12] Kernighan and Pike, The Practice of Programming , 41.
[13] Andrew Hunt and David Thomas, The Pragmatic Programmer: From Journeyman to Master (Boston, MA: Addison-Wesley, 1999), 179.

Array access or simple statements are constant-time operations, or O(1). Well-crafted quicksorts run in nlogn time or O(n log n). Two nested for loops take on the order of nxn or O( n 2 ) time. For low values of n, choose simple data structures and algorithms. As your data grows, use lower-order algorithms and data structures that will scale for larger inputs.

Use built-in functions whenever possible (like the Math object), because these are generally faster than custom replacements . For critical inner loops, measure your changes because performance can vary among different browsers.

 



Speed Up Your Site[c] Web Site Optimization
Speed Up Your Site[c] Web Site Optimization
ISBN: 596515081
EAN: N/A
Year: 2005
Pages: 135

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net