This document discusses the average case complexity of binary tree sort compared to quicksort. It analyzes the robustness of binary tree sort's O(n log n) average case complexity for non-uniform input distributions like binomial, Poisson, discrete uniform, continuous uniform, and standard normal distributions. Through statistical modeling and simulation experiments on different sample sizes, it is shown that binary tree sort maintains O(n log n) average case complexity even for non-uniform inputs, demonstrating that it is more robust than quicksort in the average case. The document concludes that only algorithms with equal worst case and average case complexities can reliably depend on average complexity measures, otherwise robustness must be verified.