0
votes
1answer
50 views
Running time of minimum spanning tree? ( Prim method )
I have written a code that solves MST using Prim method. I read that this kind of implementation(using priority queue) should have O(E + VlogV) = O(VlogV) where E is the number of …
0
votes
6answers
142 views
order of complexity of the algorithm in O notation
Can anyone tell me order of complexity of below algorithm? This algorithm is to do following:
Given an unsorted array of integers with duplicate numbers, write the most efficient …
2
votes
9answers
329 views
Examples of Algorithms which has O(1), O(n log n) and O(log n) complexities.
What are some algorithms which we use daily that has O(1), O(n log n) and O(log n) complexities?
0
votes
5answers
187 views
O Notation Help
I am getting stuck with the class work we got this week and its a subject i really want to learn so for once i thought i would do the additional reading!!!!
The method is provided …
2
votes
4answers
101 views
The Timecomplexity of Built in SQL Functions such as sum, count, avg
What is the time complexity of a function such as count, sum, avg or any other of the built in "math"-functions in mysql, sql server, oracle and others?
One would think that calli …
3
votes
2answers
353 views
Program/algorithm to find the time complexity of any given program.
As the title suggests i would like to know whether it is possible to "WRITE A PROGRAM or ALGORITHM" to find the time complexity of any given program taken as input?
Input : any pr …
8
votes
7answers
319 views
time complexity analysis of code
Hello, I have this code:
int foo(int n)
{
int x=2;
while (x<n)
{
x = x*x*x;
}
return x;
}
Now, i need to analyze its time complexity. I noticed …
4
votes
4answers
210 views
Comlexity of algorithms - exercises
Hello.
I'm learning for an exam in an introductory course to computer science, and i have a problem with the topic of complexity, both in "regular" algorithms and also in recursiv …
2
votes
12answers
443 views
Time Complexity O() of isPalindrome()
I have this method isPalindrome() and am trying to find the time complexity of it, and also rewrite the code more efficiently.
boolean isPalindrome(String s) {
boolean bP = true …
0
votes
3answers
188 views
Is it ever possible to have Big O less than O(1)? [closed]
Possible Duplicate:
are there any O(1/n) algorithms?
Is it ever possible for your code to be Big O less than O(1)?
3
votes
4answers
157 views
Java Data Structures Reference
Can anyone give me references of a web site containing a summary of the main Java data structures, and their respective complexity in time (for some given operations like add, find …
4
votes
6answers
598 views
Algorithms for Big O Analysis
What all algorithms do you people find having amazing (tough, strange) complexity analysis in terms of both - Resulting O notation and uniqueness in way they are analyzed?
3
votes
2answers
326 views
What is the time complexity of a size() call on a LinkedList in Java?
As the title asks, I wonder if the size() method in the LinkedList class takes amortized O(1) time or O(n) time.
Thanks!
0
votes
1answer
58 views
asp.net :is time complexity of searching an value by key in dictionary constant time or log2(n)?
i need a datastructure in dotnet where i can search an item in constant time.it means that datastructure should implement indexing internally.is dictionary usefull for this purpose …
0
votes
1answer
175 views
Basic Complexity Question - Convolution
Hi All,
I'm trying to evaluate the complexity of some basic image filtering algorithms. I was wondering if you could verify this theory;
For a basic pixel by pixel filter like In …
