When I give the command to drop a user i.e. DROP USER \'username\' cascade,
Does it deletes all the tablespace and datafiles used by that particular user.
You can check which table space is used by which user with the following query.
SELECT USERNAME, DEFAULT_TABLESPACE FROM DBA_USERS;
You can also see the list of table spaces by looking at the following tables
DBA_TABLESPACES USER_TABLESPACES