Construct list using given q XOR queries
Given a list S that initially contains a single value 0. Below are the Q queries of the following types:
- 0 X: Insert X in the list
- 1 X: For every element A in S, replace it by A XOR X.
Print all the element in the list in increasing order after performing the given Q queries.
- Time : O(nlogn)
- Space : O(n)
c++
1 | class Solution { |