Chan-Singhal-Liu ( Mutual Exclusion): Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
(Created page with "== Time Complexity == $O(logn)$ == Space Complexity == $O({1})$ per process, $O(n)$ total? communication variables? (Each process seems to keep track of a constant number of variables (see algorithm descriiption)) == Description == == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == == Year == 1990 == Reference == https://ieeexplore-ieee-org.ezproxy.canberra.edu.au/document/113817")
 
No edit summary
 
Line 1: Line 1:
== Time Complexity ==  
== Time Complexity ==  


$O(logn)$
$O(\log n)$


== Space Complexity ==  
== Space Complexity ==  
Line 7: Line 7:
$O({1})$ per process, $O(n)$ total? communication variables?
$O({1})$ per process, $O(n)$ total? communication variables?


(Each process seems to keep track of a constant number of variables (see algorithm descriiption))
(Each process seems to keep track of a constant number of variables (see algorithm description))


== Description ==  
== Description ==  

Latest revision as of 08:56, 10 April 2023

Time Complexity

$O(\log n)$

Space Complexity

$O({1})$ per process, $O(n)$ total? communication variables?

(Each process seems to keep track of a constant number of variables (see algorithm description))

Description

Approximate?

Exact

Randomized?

No, deterministic

Model of Computation

Year

1990

Reference

https://ieeexplore-ieee-org.ezproxy.canberra.edu.au/document/113817