Consider an infinite binary tree in which its vertices can be represented as finite strings of 0's and 1's. Let $\emptyset$ denote the top vertex aka the "root" of the tree. Let $0<p<\frac{1}{2}$ and define the transition probability as follows:
At each vertex, it has probability $p$ to move to one of its two children vertices, and probability $1-2p$ to move to its parent vertex. Since $\emptyset$ has no parent we let $p(\emptyset, \emptyset)=1-2p$.
For which values of $p$ is this chain recurrent, positive recurrent, or null recurrent?
EDIT: Some intuition now that I have given it more thought: For any node, consider only its "depth", aka $\emptyset$ has depth $0$, $0$ and $1$ has depth $1$, $10$, $11$,$01$, and $00$ has depth $2$, and so on. Then this tree simplifies down to a random walk on the number line $\mathbb{N}$. We know that such walk is transient if $p(x, x+1)>\frac{1}{2}$, null recurrent if $p(x, x+1)=\frac{1}{2}$, and positive recurrent if $p(x, x+1)<\frac{1}{2}$.
Translating this to the tree, it would be transient if $2p>\frac{1}{2}$, null recurrent if $2p=\frac{1}{2}$, and positive recurrent if $2p<\frac{1}{2}$. Is this the correct thought process? If so how can I formalize it?