ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 2.10. Discussion Questions
    번역/Problem Solving with Algorithms and Data 2017. 10. 28. 14:45
    반응형

    이 문서는 영문으로된 내용을 구글 번역기를 활용하여 번역한 내용입니다. 
    개인적인 공부 및 추후 다시 볼 수 있도록 하기 위해 개인 블로그에 번역 내용을 옮겨 놓았습니다.
    원문과 내용이 다를시 책임지지 않으며, 저작권 문제가 발생시 언제든 삭제 될 수 있습니다. 


    Problem Solving with Algorithms and Data Structures using Python by Bradley N. Miller, David L. Ranum is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License


    1. Give the Big-O performance of the following code fragment:
      for i in range(n):
         for j in range(n):
            k = 2 + 2

    2. Give the Big-O performance of the following code fragment:
      for i in range(n):
           k = 2 + 2

    3. Give the Big-O performance of the following code fragment:
      i = n
      while i > 0:
         k = 2 + 2
         i = i // 2

    4. Give the Big-O performance of the following code fragment:
      for i in range(n):
         for j in range(n):
            for k in range(n):
               k = 2 + 2

    5. Give the Big-O performance of the following code fragment:
      i = n
      while i > 0:
         k = 2 + 2
         i = i // 2

    6. Give the Big-O performance of the following code fragment:
      for i in range(n):
         k = 2 + 2
      for j in range(n):
         k = 2 + 2
      for k in range(n):
         k = 2 + 2


    반응형

    '번역 > Problem Solving with Algorithms and Data' 카테고리의 다른 글

    2.11. Programming Exercises  (0) 2017.10.28
    2.9. Key Terms  (0) 2017.10.28
    2.8. Summary  (0) 2017.10.28
    2.7. Dictionaries  (0) 2017.10.28
    2.6. Lists  (0) 2017.10.28
Designed by Tistory.