Collision detection is naturally an O(n^2) problem.
You have a bunch of objects and you need to check if that object is colliding with every other object. Right now that is my naive approach and while it isn't a problem on modern hardware for a limited number of objects I'm now approaching the point that it is a bottleneck (after profiling my code).
Here is example of my program I'm working on as a fun project:

There are 400 balls in the image and I can have up to 1000 with my current constraints. 1000^2 is a million collision checks, each game update. I need to implement some broad phase pruning. It is too slow and you can tell in the simulations that it is taking a definite toll.
What technique do I need to use for my broad phase collision detection? I'm looking for someone with serious experience in either games or simulation programming who "knows" what the best solution to this 2D use-case is. Is it QuadTrees? Is it BSP? What?
The end goal is to check only the balls that are spatially close to each other, which will allow me to prune thousands of collision checks. The problem is, there are so many ways of solving this problem that I would like some advice on the proper solution for my particular program. Grids, Spatial data structures like QuadTrees, spatial hashing, etc.
Related Questions to this project asked on SO:
