A left-handed/clockwise circularly polarized wave as defined from the point of view of the source.

Computer Science (CS)

University of Nevada, Las Vegas (UNLV),


This website is a resource for computer science (CS) for me.

Sections

  1. Links
  2. Sorting


  1. Links

    1. computer science (CS)
    2. Computer Science Dept. (CS) at UNLV,
      1. Directory But Guymon Hall is not there yet.
      2. Information Technology Minor Guymon Hall, TBE-B346, hallg2#unlv.nevada.edu. He teaches Ruby.
      3. Thomas T. Beam Engineering Complex (TBE)
      4. CS courses
      5. Class Search: CS
    3. LAPACK
    4. Metcalf, 2011 This is new edition of the Metcalf I have---useful, but a little dated.
    5. Numerical Algorithms Group (NAG)
    6. Numerical Recipes (NR) I have the 1st edition Numerical Recipes, 1989.
    7. object-oriented programming (OOP) Well OPP seems to defy an easy definition: "An object is an abstract data type with the addition of polymorphism and inheritance. An object has both state (data) and behavior (code)." Got that?
    8. Richtmyer & Morton, 1967 Still considered a good resource half a century later.

  2. Sorting

    1. bubble sort Deprecated severely by NR. So it should never be used, but you should still know it. The number of operations scales as (n-1)n/2 (see Wikipedia: Summation: Some summations of polynomial expressions).