(*a)->shortest = (!(*a)->rightchild)? 1 : (*a)->rightchild->shortest +1;



이부분에서요


?1: 이부분이


1이아니면  (*a)->rightchild->shortest +1이걸로 바꾸라는뜻인가여?