Yes - You can use the same the same algorithm for both feature selection and prediction. The most commonCommon examples are L1 regression and tree-based algorithms. Those algorithms both find the most important features and predict targets using the same fitting mechanism.
The difference between those algorithms and your examples is that those algorithms do both steps concurrently and your examples are sequential.
There is no single best algorithm for feature selection that can also be used with other models for prediction. Different algorithms will perform better on different datasets.