What is Big-O notation?
Answer / nashiinformaticssolutions
o Big-O notation describes the performance or complexity of an algorithm in terms of the size of the input. Common examples:
O(1)O(1): Constant time
O(n)O(n): Linear time
O(logn)O(log n): Logarithmic time
O(n2)O(n^2): Quadratic time
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between a namespace and assembly ?
How to rename A1-A30 datasets into B1-B30 using macros?
in IT trend mantis meant what? how to know mantis in IT trends? detail description about mantis?
0 Answers Sacred Heart College,
What is autocall macro and how to create autocall macro? what is the use of it?
what is mutex?
4 Answers Axiom, Blue Star, SQL Star,
A, B and C are 8 bit nos. They are as follows: A 1 1 0 1 1 0 1 1 B 0 1 1 1 1 0 1 0 C 0 1 1 0 1 1 0 1 Find ( (A-B) u C )=? how to solve this need with steps
A combination of multiple keys defined in a physical file or logical file is called a _________ key
You are given some denominations of coins in an array (int denom[])and infinite supply of all of them. Given an amount (int amount), find the minimum number of coins required to get the exact amount. What is the method called?
Given an array of size n. It contains numbers in the range 1 to n. Find the numbers which aren?t present.
3. What is the difference between testing and Quality Assurance?
which book we learned this mantis? how many version are realsed this mantis upto now?
There are 2 tables: EMP : EmpId, Ename, Sal, DeptId DEPT : DeptId, Dname Write a query to find out emp names and their department names. if any emp has null in Deptid the it shows ?No Department?. Write a query to find out those department names which has no employee. Write a query to find out those employees whose salary is greater than their department?s average salary.