What you are asking for does not exist and cannot exist, because there is no 1: 1 relationship between the type of operation and complexity. Consider, for example, the basic selection operation. This may be related to different plans, and the planner makes decisions regarding the assessment of the complexity of each plan. For example, suppose that:
CREATE TABLE my_index_test (id int primary key);
EXPLAIN ANALYZE SELECT * FROM my_index_test where id = 0;
QUERY PLAN
Seq Scan on my_index_test (cost=0.00..34.00 rows=2400 width=4)
(actual time=0.003..0.003 rows=0 loops=1)
Total runtime: 0.045 ms
(2 rows)
(), . , , PostgreSQL , , .
, O (1).