Skip to main content

Questions tagged [runtime]

18 votes
5 answers
5k views

I'm trying to understand what the term "runtime" means specifically in programming and software engineering. The more research i do into the term, the more it seems it could mean several ...
How To Linux's user avatar
1 vote
3 answers
4k views

Suppose I have two abstract classes called Color and Animal And I can create classes Green/Red/Blue derived from Color and classes Dog/Cat/Pig derived from Animal at runtime using factory pattern. ...
Xie Qing's user avatar
0 votes
0 answers
96 views

So I came upon this time complexity result and I was confused about it, it said that : O(nlogn) + O(logn) =O(log(n+1)) Why is that the case? Shouldn't the result be O(nlogn)?
blake 's user avatar
  • 27
1 vote
1 answer
179 views

I often run data processing/machine learning/filesystem-scanning scripts that can take well over 24 hours to complete. For processes with arbitrarily low memory requirements, I can run without using ...
Max Candocia's user avatar
0 votes
2 answers
114 views

Suppose we have a code: for(int i=0;i<n;i++) sum+=i; We say the time function here is: f(n) = n+1+n = 2n+1. The order of the time function is 1. So, our time complexity becomes O(n). But, for the ...
Md Mosleh Uddin's user avatar
2 votes
1 answer
1k views

The company I'm currently working for has a feature in an enterprise app where a user can add columns to a table configuration on a web GUI through fields and a button, and a corresponding SQL table ...
Manish M's user avatar
2 votes
1 answer
3k views

So I know a little bit about parsing Json data but not too much so pardon if I am not describing everything as I should. Lets use this Json file as an example: { "firstname": "John", "...
EmperiumIce's user avatar
1 vote
1 answer
98 views

I want to design a hash table library that keeps usage statistics and based on how it is used will use different implementations at runtime. For example use a certain implementation for small size ...
pooya13's user avatar
  • 187

15 30 50 per page
1
2 3 4 5