User profile: JesusFreak43

User info
User name:JesusFreak43
History
Joined:
Number of posts:20
Latest posts:

Thread Bad Access Code Binary Tree
Hello, I am currently working on this project for my CS class and I am trying to find the number of...

Is This Linked List Function On Point?
Hello. So I created this code for my last project for my CS class, yet I know there are problems wit...

Recursive Definition Clarification
"Consider the following recursive definition, where n is a positive integer. F(1) = 3 F(n) = F...

Splitting Linked List at a given node into two sublists
What about this: [code] while (current != first && !found) if (current->info == ...

Splitting Linked List at a given node into two sublists
Okay, I think I got it now. By the way, under a while loop is one if/else duo considered like one st...