With this code, you can select one author into a dropdown list.
<?php wp_dropdown_users( array('include' => $authors, 'name' => 'author-dropdown', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>
But I don’t know how to add a link.
Please help, thanks.