Using reorg has 3 main advantages. First it will free up space that is no longer being used, It will fix all overflows (rows that had to be moved to another page due to data changes), and lastly it can order (cluster) the data based on some index.
If you have runstats done before and after the reorg, you should see differences in syscat.tables for NPAGES, FPAGES, and OVERFLOW columns for the table. For the clustering, you should see improvements in some queries.
Andy