Tagged articles
4 articles
Page 1 of 1
AI Algorithm Path
AI Algorithm Path
Aug 1, 2025 · Fundamentals

Intuitive Explanation of the Exponential Weighted Moving Average Algorithm

This article explains the exponential weighted moving average (EWMA) as a practical time‑series approximation method, detailing its motivation, recursive formula, weight decay behavior, typical beta values, and a bias‑correction technique that improves early‑stage estimates.

Beta ParameterBias CorrectionExponential Weighted Moving Average
0 likes · 7 min read
Intuitive Explanation of the Exponential Weighted Moving Average Algorithm
JD Cloud Developers
JD Cloud Developers
Jan 13, 2025 · Backend Development

How JD Logistics Optimizes Order Merging with Recursive Algorithms

This article explains the background, challenges, and recursive algorithmic solution JD Logistics uses to merge purchase orders, detailing the merging rules, code implementation, deduplication strategy, performance gains, and the resulting operational benefits such as increased merchant satisfaction and faster processing.

JavaLogistics OptimizationRecursive Algorithm
0 likes · 11 min read
How JD Logistics Optimizes Order Merging with Recursive Algorithms
FunTester
FunTester
Sep 8, 2019 · Fundamentals

How to Find Twin Primes with a Simple Recursive Sieve in Python and Java

This article explains a straightforward recursive sieve method for generating prime numbers, compares Java's in‑loop deletions with Python's deferred removal, provides full source code, and shows how to identify twin prime pairs while noting Python's recursion depth limitation.

JavaPrime NumbersPython
0 likes · 4 min read
How to Find Twin Primes with a Simple Recursive Sieve in Python and Java