You can't without quite a bit of code (to pick up that user id) in your route.php, which is something you would want to avoid.
Instead, route to "admin/user/edit" without the number, define the method as "action_edit($id = null)", and then in the action, if no id is passed ($id == null), do a current user id lookup.