About 50 results
Open links in new tab
  1. What is the name the class of functions described by O(n log n)?

    Jun 5, 2017 · I don't think that linearithmic is a well established term as stated in a comment to the accepted answer. I googled some rather young articles using this term, a CS course and another …

  2. How can a quadratic algorithm be faster than a linearithmic one?

    Jul 10, 2015 · How can a quadratic algorithm be faster than a linearithmic one? Ask Question Asked 10 years, 5 months ago Modified 1 year, 3 months ago

  3. What should I call algorithms with non-linear non-constant time?

    Is there any common term to use in such a situation? linearithmic refers to O(NLOGN) algorithms and it's narrower than what I'm looking for. I don't think of non-linear as a good term to use here. If it is, …

  4. machine learning - O (m+n) Algorithm for Linear Interpolation ...

    May 31, 2020 · I'm not sure, what do you mean by " The rest of the query points are handled by traversal." But yes, the idea is to iterate through data and query points simultaneously using two …

  5. time complexity - Linearithmic solution to finding closest pairs in an ...

    Jul 29, 2019 · Linearithmic solution to finding closest pairs in an array of N elements Ask Question Asked 6 years, 4 months ago Modified 6 years, 4 months ago

  6. asymptotics - When the data size and processor speed are both ...

    Aug 27, 2019 · When the data size and processor speed are both multiplied by 10, then a linearithmic algorithm takes double the time to finish? Ask Question Asked 6 years, 2 months ago Modified 6 …

  7. Why does - Computer Science Stack Exchange

    While technically the linearithmic term dominates, if a a is small compared to the other coefficients you will have a hard time detecting it. Measuring wall-clock running time is noisy without end, inparticular …

  8. Master Theorem linearithmic function - Computer Science Stack …

    Master Theorem linearithmic function Ask Question Asked 7 years, 11 months ago Modified 7 years, 11 months ago

  9. complexity theory - Computer Science Stack Exchange

    Jul 8, 2022 · In some works, such as the recent maxflow paper, there is reference to an "almost-linear" complexity, which typically refers to a complexity of $O(n^{1+o(1 ...

  10. Analysis of dependent double for - Computer Science Stack Exchange

    Feb 17, 2020 · 0 Here is the algorithm: int sum = 0 for (int i = 2N; i > 0; i = i / 4) { for (int j = 0; j < i; j+=2) { sum++ } } I figured this would be linearithmic, but it's just linear. I would appreciate seeing a …