Try feeding the output of du into a simple awk script that checks to see if the size of the directory is larger than some threshold, if so it prints it. You don't have to wait for the entire tree to be traversed before you start getting info.
For example, the following displays any directories that consume more than about 500 MB ( assuming du units are in KB)
du -x / | awk '{ if ($1 > 500000) { print $0} }'
To make the above a little more reusable, you can define a function in your .bashrc, ( or you could make it into a standalone script).
dubig() {
[ -z "$1" ] && echo "usage: dubig sizethresh sizethreshKB [duargs]" && return
du $2 | awk '{ if ($1 > '$1') { print $0} }'
}
The following example checks my home directory for any directories that have more than 200 MB, without going onto another file-system (e.g. symlink to a different nfs mount)
dubig 200e3 "$HOME -x"
