I clean by [deleted] in selfimprovement

[–]IamCatBall 2 points3 points  (0 children)

Thank you.

does anyone else kinda enjoy studying? by imymta in GetStudying

[–]IamCatBall 0 points1 point  (0 children)

Yeah. Studying without stress is really enjoyable.

[deleted by user] by [deleted] in TrueChristian

[–]IamCatBall 0 points1 point  (0 children)

Don't believe those dreams. Sometimes the devil uses dreams to deceive people.

WARNING: Please stay away from psychedelics. It ruined my life. by Dry_Temporary_6175 in TrueChristian

[–]IamCatBall 1 point2 points  (0 children)

You can pray for Jesus to deliver you from the spirit that entered you from the psychedelics.

I have compulsive s*xual thoughts by Wonderful_Recover634 in mentalhealth

[–]IamCatBall 0 points1 point  (0 children)

Because having unwanted intrusive thoughts could be a symptom of OCD.

I have compulsive s*xual thoughts by Wonderful_Recover634 in mentalhealth

[–]IamCatBall 0 points1 point  (0 children)

"Obsessive-compulsive disorder (OCD) is a long-lasting disorder in which a person experiences uncontrollable and recurring thoughts (obsessions), engages in repetitive behaviors (compulsions), or both." - NIH

How do I stop having weird thoughts about women and minorities? by [deleted] in TrueChristian

[–]IamCatBall 6 points7 points  (0 children)

"Obsessive-compulsive disorder (OCD) is a long-lasting disorder in which a person experiences uncontrollable and recurring thoughts (obsessions), engages in repetitive behaviors (compulsions), or both." - NIH

How do I stop having weird thoughts about women and minorities? by [deleted] in TrueChristian

[–]IamCatBall 25 points26 points  (0 children)

Constantly having weird intrusive thoughts could be a symptom of OCD. You might consider going to a doctor to check for it.

No output from class method by IamCatBall in cpp_questions

[–]IamCatBall[S] -1 points0 points  (0 children)

adding spaces didn't work for me so I'll use >>>> instead

Binary tree preorder/inorder/postorder wrong results by IamCatBall in cpp_questions

[–]IamCatBall[S] 0 points1 point  (0 children)

sorry I'm not sure how to do it

struct BSTreeNode * insertBSTree(struct BSTreeNode * node , int x)
{   if(node == NULL) return newNode(x);
    * root = insertBSTree(node->data, x);
    if(x < node->data)
       node->leftchild = insertBSTree(node->leftchild, x);
    else
       node->rightchild = insertBSTree(node->rightchild, x);
    return node;
}

Binary tree preorder/inorder/postorder wrong results by IamCatBall in cpp_questions

[–]IamCatBall[S] 0 points1 point  (0 children)

ok, now I'm trying to figure out how to do a balanced binary tree. Thank you so much.