Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VS2008の stdlib 実装を使用しqsort()ます。
qsort()
この実装はqsort()ヒープ上のメモリを使用しますか? それとも、スタックベースのメモリのみが使用されていますか?
クイックソートは、インプレース ソート アルゴリズムです。再帰呼び出しのためのランタイム スタック上のスペースを除いて、メモリは使用しません。
こことここでわかるように、ヒープにメモリをまったく割り当てません。