How to create algorithm for ordering posts in WordPress?

$orderby = array( 
               'likes'      => 'DESC', 
               'views' => 'DESC',
               'date' => 'DESC',
); 


$query->set('orderby', $orderby);

Note: Make sure meta_key match with your meta keys.

Here is the reference: https://make.wordpress.org/core/2014/08/29/a-more-powerful-order-by-in-wordpress-4-0/