Does a TM M have a state that is visited no more than $K$ times when started on an empty tape ?
I tried to reduce it to halting problem, but didn't get the right way.
I want to know that is there any other method, it can be solved (except reduction) ?
Suppose you can do that. Take a machine you want to solve halting problem for, replace 'halt' with going to additional
haltstate and at the beginning cycle through all other states. Run your hypothetical check for this altered machine and $K=0$ and you've solved the halting problem (truemeans we won't reachhaltstate since we've visited all other states once in the beginning,falsemeans we will get tohaltwhich only happens in the end).