Graphs (networks) are an important tool to model data in different domains, including social networks, bioinformatics and the world wide web. Most of the networks formed in these domains are directed graphs, where all the edges have a direction and they are not symmetric. Betweenness centrality is an important index widely used to analyze networks. In this paper, first given a directed network G and a vertex r ∈ V (G), we propose a new exact algorithm to compute betweenness score of r. Our algorithm pre-computes a set RV(r), which is used to prune a huge amount of computations that do not contribute in the betweenness score of r. Time complexity of our exact algorithm depends on |RV(r)| and it is respectively Θ(|RV(r)| · |E(G)|) and Θ(|RV(r)| · |E(G)| + |RV(r)| · |V (G)| log |V (G)|) for unweighted graphs and weighted graphs with positive weights. |RV(r)| is bounded from above by |V (G)| − 1 and in most cases, it is a small constant. Then, for the cases where RV(r) is large, we present a simple randomized algorithm that samples from RV(r) and performs computations for only the sampled elements. We show that this algorithm provides an (ǫ, δ)-approximation of the betweenness score of r. Finally, we perform extensive experiments over several real-world datasets from different domains for several randomly chosen vertices as well as for the vertices with the highest betweenness scores. Our experiments reveal that in most cases, our algorithm significantly outperforms the most efficient existing randomized algorithms, in terms of both running time and accuracy. Our experiments also show that our pro-2 Mostafa Haghir Chehreghani et al. posed algorithm computes betweenness scores of all vertices in the sets of sizes 5, 10 and 15, much faster and more accurate than the most efficient existing algorithms.Keywords Networks · directed graphs · betweenness centrality · exact algorithm · approximate algorithm 1 Introduction Graphs (networks) provide an important tool to model data in different domains, including social networks, bioinformatics, road networks, the world wide web and communication systems. A property seen in most of these real-world networks is that the ties between vertices do not always represent reciprocal relations [24]. As a result, the networks formed in these domains are directed graphs where any edge has a direction and the edges are not always symmetric.Centrality is a structural property of vertices (or edges) in the network that quantifies their relative importance. For example, it determines the importance of a person within a social network, or a road within a road network. Freeman [13] introduced and defined betweenness centrality of a vertex as the number of shortest paths from all (source) vertices to all others that pass through that vertex. He used it for measuring the control of a human over the communications among others in a social network [13]. Betweenness centrality is also used in some well-known algorithms for clustering and community detection in social and information networks [15]....