The number of memory cells which an algorithm needs.
-2
votes
1answer
62 views
How to reduce time and space complexity of the following code
Optimize (Reduce the space and Time complexity)this function as much as possible.
public void q1(String str, int[] arr)
{
String local = "findnumber";
for(int i=0; ...
0
votes
0answers
49 views
What is the space complexity of alpha-beta pruning?
Question
Assume that b is the maximum branching factor of a search tree, d is the
depth of the least cost solution, and that m is the maximum depth of the
search space. Then, assuming a ...
0
votes
1answer
66 views
Space complexity of a B-tree index in a database
A traditional B-tree implementation has O(n) space complexity [1].
So assume in a database (regardless of implementation, just consider general case), I have a table of 10GB data, currently the index ...
0
votes
1answer
20 views
increase efficiency of numeric pattern algo [closed]
my aim is to design a function with arguments(int m,int n)
so that output is like (for m=3,n=5)
3
34
345
34
3
i came up with this code
void func(int m,int n)
{
for(int ...
3
votes
1answer
150 views
Sorting in linear time and in place
Suppose that n records have keys in the range from 1 to k.
Write an algorithm to sort the records in place in O(n+k) time.
You may use O(k) storage outside the input array.
Is your algorithm ...
8
votes
3answers
188 views
Space complexity of head.reverse vs. last
In many systems, head.reverse requires space proportional to the size of the list, whereas last requires constant space.
Are there systems to perform such a transformation? Similarly for reverse.take ...
-2
votes
3answers
116 views
Complexity of if statement
I am wondering complexity of following if statement
if (isTrue()) //case 1
VS
if(isTrue()==true) //case 2
And isTrue defined as
boolean isTrue(){
//lots of calculation and return true false ...
7
votes
1answer
187 views
Puzzle: Who wins the game?
A group of children form a ring. The first child is selected and they start counting clockwise from that child until a fixed number (n, which is given at the starting of the game) is reached. When the ...
3
votes
1answer
84 views
Is there a space efficient implementation of mergesort?
I just coded up this working version of mergesort:
static int[] merge(int[] first, int[] second){
int totalsize = first.length + second.length;
int[] merged_array = new int[totalsize];
...
-3
votes
3answers
61 views
How can I find T (1) when I measure the complexity of an algorithm
Question 01:
How can I find T (1) when I measure the complexity of an algorithm?
For example
I have this algorithm
Int Max1 (int *X, int N)
{
int a ;
if (N==1) return X[0] ;
a = Max1 (X, N‐1);
...
0
votes
2answers
207 views
What is the computational complexity of the EM algorithm?
In general, and more specifically for Bernoulli mixture model (aka Latent Class Analysis).
1
vote
2answers
76 views
Space complexity confusion
I'm a bit confused about analyzing space complexity in general. I'm not sure the meaning of "extra space taken up by the algorithm". What counts as space of 1?
In the example here
int findMin(int[] ...
6
votes
2answers
355 views
Deleting all nodes in a binary tree using O(1) auxiliary storage space?
The standard algorithm for deleting all nodes in a binary tree uses a postorder traversal over the nodes along these lines:
if (root is not null) {
recursively delete left subtree
recursively ...
0
votes
1answer
495 views
infix to prefix time and space complexity
I have been working on writing a Java program to convert from infix notation to prefix notation using an operand stack and an operator stack. I have implemented a working converter based on the ...
5
votes
4answers
2k views
Why does QuickSort use O(log(n)) extra space?
I have implemented the below quicksort algorithm. Online I've read that it has a space requirement of O(log(n)). Why is this the case? I'm not creating any extra data structures.
Is it because my ...
0
votes
1answer
351 views
Divide and Conquer algorithm for generating n-bit strings?
Can someone please tell how to generate n-bit strings(all possible combinations) i.e. counting bits form 0 to 2^n-1 using Divide and Conquer Approach.
I was able to do this with the following ...
1
vote
4answers
243 views
How do i reduce the space complexity in Sieve of Eratosthenes to generate prime between a and b?
After getting through some of the SO posts, i found Sieve of Eratosthenes is the best & fastest way of generating prime numbers.
I want to generate the prime numbers between two numbers, say a ...
12
votes
3answers
616 views
Find a number with even number of occurrences
Given an array where number of occurrences of each number is odd except one number whose number of occurrences is even. Find the number with even occurrences.
e.g.
1, 1, 2, 3, 1, 2, 5, 3, 3
Output ...
2
votes
1answer
262 views
Redis Data Structure Space Requirements
What is the difference in space between sorted sets and lists in redis? My guess is that sorted sets are some kind of balanced binary tree, and lists are a linked list. This means that on top of the ...
1
vote
1answer
441 views
Best way to generate Pascal Triangle
I am using the concept of level order traversal to generate Pascal Triangle.
Here is the code snippet:
void printPascalTriangle(int n)
{
int line=1,Q[50]={0},f=-1,r=-1,prev,t;
...
1
vote
3answers
179 views
what type of maths is required to understand algorithm time and space complexities?
I've been applying for jobs and every time I hear questions about algorithm time/space complexity, I cringe and stumble. No matter how much I read, my brain seems to be programmed to not get any of ...
1
vote
1answer
397 views
Time Complexity and Space Complexity
My algorithm is as shown below. It makes a remote call to a server and gets the results process them and again send the remote call to a system. Can you give me an idea what can be time and space ...
23
votes
10answers
3k views
Find the k non-repeating elements in a list with “little” additional space
The original problem statement is this one:
Given an array of 32bit unsigned integers in which every number appears exactly twice except three of them (which appear exactly once), find those three ...
0
votes
3answers
177 views
Space complexity of C# sort on string lists
I'm implementing a program to sort large files that maybe don't fit in memory. All files will be sorted by lines so I'm thinking in use a List to do it.
I already calculated how many lines I can have ...
1
vote
2answers
657 views
Is it possible to implement quicksort with O(1) space complexity?
From what I understood in Wikipedia's explanation of quicksort's space complexity, quicksort's space complexity comes from its recursive nature. I'm curious as to whether it's possible to implement ...
5
votes
2answers
1k views
What is the best in place sorting algorithm to sort a singly linked list
I've been reading on in place sorting algorithm to sort linked lists. As per Wikipedia
Merge sort is often the best choice for sorting a linked list: in this situation it is relatively easy to ...
14
votes
2answers
648 views
Suffix Arrays vs Suffix Trees
I just wanna know, when a suffix tree is superior to an enhanced suffix array.
After reading Replacing suffix trees with enhanced suffix arrays i don't see a reason to use suffix trees anymore. Some ...
0
votes
0answers
62 views
time and space complexity for bernoulli model and multinomial model (Weka's Naive Bayes)
I want to know the difference between Bernoulli model and the multinomial model for weka Naive Bayes in terms of time and space complexity.
any help?
1
vote
2answers
1k views
Real world exmaples to decide which sorting algorithm works best
I am risking this question being closed before i get an answer, but i really do want to know the answer. So here goes.
I am currently trying to learn algorithms, and I am beginning to understand it ...
1
vote
2answers
264 views
Meaning of the terms O(1) space and without using extra space
This is slightly confusing to me. What should be my approach of solving a given problem when the constraint is as follows:
1) Without using extra space:
For e.g.: If I want to sort a given array, I ...
2
votes
2answers
904 views
Space complexity of recursive algorithm
I was asked at an interview, the efficient way to solve a problem checking for pallindrome.
Now i can do two things:
starting from i = 0 to i = n/2 and comparing ith and n-ith character to be ...
2
votes
1answer
75 views
breaking vs returning from inside a for loop
Below are two snippets. Notice the ONE AND ONLY difference between the programs is that one break to return and the other return immediately. I understand it's good design practice to have one point ...
3
votes
2answers
265 views
Expected space consumption of skip lists
What is the expected space used by the skip list after inserting n elements?
I expect that in the worst case the space consumption may grow indefinitely.
Wikipedia says “Space O(n)”.
How can this ...
3
votes
1answer
109 views
when is Big-Oh(n) = Omega(n) ? Is it same as theta(n)?
This question looks simple to me, but just wanted to see whether i am moving in the right direction.
Is it as simple as saying when n =1 ??
2
votes
1answer
244 views
2 Player Game is Polynomial Space complete
So there is a n x n game board and each location on the board has an integer. Player one picks a number from row 1 and player 2 picks a number from row 2 and they alternate until there are no more ...
5
votes
2answers
445 views
A good sorting algorithm for mostly-sorted data that doesn't all fit into memory? [closed]
In case you are given:
certain amount of data
memory with size half of the data size
part of the data is sorted
you do not know the size of the sorted data.
Which sorting algorithm would you ...
-2
votes
2answers
176 views
time complexity of the acc function in scheme?
I have been trying to find a tight bound time complexity for this function with respect to just one of the arguments. I thought it was O(p^2) (or rather big theta) but I am not sure anymore.
(define ...
10
votes
2answers
307 views
Is imperative Quicksort in situ or not?
Quicksort is often described as an in situ algorithm, despite the fact that it requires O(log n) stack space. So does in situ mean "requires less than O(n) additional space", or does stack space ...
1
vote
2answers
236 views
Is the matrix multiplication algorithm for NxM and MxP matrices O(NP) in space?
When multiplying two matrices, we need to allocate a third one to store the result. Should this allocation be considered when calculating the memory consumption of the algorithm?
4
votes
4answers
1k views
Calculating the space complexity of a C-function?
Consider the following C-function:
double foo (int n) {
int i;
double sum;
if (n==0)
return 1.0;
else {
sum = 0.0;
for (i=0; i<n; i++)
sum +=foo(i);
...
2
votes
2answers
101 views
Approaching space complexities for large projects
I got this question asked in a startup
If you are asked to design Maps like Bing Maps how would you estimate the space complexity ?
The only answer I could think for maps is, the space was ...
1
vote
5answers
1k views
Relation of time complexity and space complexity
Can an algorithm having a time complexity of O(n) have a space complexity of O(n2) or more than that?
2
votes
2answers
3k views
Time complexity versus space complexity in Turing machines
I think defenitions of time complexity and space complexity for Turing machines are identical and I can't differentiate
between them.
Please help me. Thanks.
3
votes
3answers
950 views
Reversing a singly linked list when a block size is given
There is a singly connected linked list and a block size is given.For eg if my linked list is 1->2->3->4->5->6->7->8-NULL and my block size is 4 then reverse the first 4 elements ...
2
votes
4answers
772 views
merge sort space
In a top-down merge sort the recursive functions are called in this fashion:
void mergesort(Item a[], int l, int r) {
if (r <= l) return;
int m = (r+l)/2;
mergesort(a, l, m);
...
1
vote
3answers
168 views
Improving space complexity while reading from a file
I have an arbitrarily long line of integers (or floating point values) separated by commas in a file:
1,2,3,4,5,6,7,8,2,3,4,5,6,7,8,9,3,... (can go upto >100 MB)
Now, I have to read these ...
4
votes
3answers
2k views
Find Kth largest number in single pass without storing the whole array
The algo I have in mind is
keep an MaxHeap of size K
insert each element
drop out smaller value if heap is full
In the end, Kth max is the smaller of MaxHeap
That will give me O(NlogK). Is ...
7
votes
1answer
243 views
What is the Computational Complexity of Mathematica's CylindricalDecomposition
Mathematica' CylindricalDecomposition implements an algorithm known as Cylindrical Algebraic Decomposition. Wolfram MathWorld's article on Cylindrical Algebraic Decomposition says that this algorithm ...
5
votes
2answers
1k views
Big O complexities of algorithms - LZW and Huffman
What are the space and time complexities, in Big O notation, for the Lempel-Ziv-Welch and Huffman compression algorithms? Google is failing me.
Thanks,
Francisco
2
votes
3answers
166 views
Is fixed array size O(n) or O(1) in space?
Is an array declared like this:
int array[M], O(1) in space or O(n)? where M is some fixed value. To me O(n) makes sense because it is not just a single variable but an entire array. But then i think ...

