Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Traveldixie

    MFC: difference between window extents and viewport extents

    Can anyone describe me the difference between window extents and viewport extents, how I can distinct them? And why should I put a SetWindowExt first while working under an isotropic mapping mode? I'm kinda confused in this matter.. Thank you a lot!
  2. Traveldixie

    Extremely easy Time Complexity Question (correct nonTGML-version!)

    Table t[1...n] int s, i; i=1; s=0; while(i<=n){ s = s + t[i]; i++; }; Complexity : is it n+2 or 2n+2 ? At the the line s = s + t[i]; isn't the adding of t[i] a simple constant assignment? Or am I traversing the whole table still making it an extra &quot;n&quot;-factor? Please help us out...
  3. Traveldixie

    Extremely easy Time complexity Q

    Table t[1...n] int s, i; i=1; s=0; while(i<=n){ s = s + t[i]; i++; }; Complexity : is it n+2 or 2n+2 ? At the the line s = s + t[i]; isn't the adding of t[i] a simple constant assignment? Or am I traversing the whole table still making it an extra &quot;n&quot;-factor? Please help us out...
  4. Traveldixie

    OPEN EXTEND in Microfocus Cobol under XP

    Hello all, I'm a starter in cobol-programming but I do feel something is weird about this problem. Please forgive me for the lenghty program as I don't know how to show you otherwise my problem with it... I'm working on an Athlon with XP as OS and I'm using the Microfocus compiler with that...

Part and Inventory Search

Back
Top