Forum: C++ Nov 20th, 2008 |
| Replies: 5 Views: 2,792 yes, you have to do some thing like that only. It your wish to use the recursive function or not but I don't recommend to use the recursive function in this case and earlier one too.
In any number... |
Forum: C++ Nov 20th, 2008 |
| Replies: 25 Views: 1,227 There come 3 condition while deleting..
1. node is at the front
2. node is at last
3. node is in between
You need to have the previous node of the list in order to join again...
You can... |
Forum: C++ Nov 20th, 2008 |
| Replies: 5 Views: 2,792 Nice thought to use the recursive function...
recursive function should have the terminating point which in the conversion always turn to 1 at last.
void binary(int num)
{
if(num!=1)
... |
Forum: C++ Nov 20th, 2008 |
| Replies: 25 Views: 1,227 |
Forum: C++ Nov 20th, 2008 |
| Replies: 25 Views: 1,227 Let me put in right way..
you are creating the renewing list each time you add new nodes (new songs).
in every insertion ... your list pointer is set in to NULL. causing the earlier information to... |
Forum: Visual Basic 4 / 5 / 6 Nov 15th, 2008 |
| Replies: 8 Views: 1,261 dont just copy the code,match the braces
it is just a code snippet
so use the correct syntax
Private Sub cmdSwitch_click()
if picture1.picture ="D:\hehe\Winter.jpg" then
picture1.picture =... |
Forum: C++ Oct 10th, 2008 |
| Replies: 19 Views: 1,511 I agree with you ArkM. :)
I wan't to ask what container have to be used to do such thing...
And don't tell me sets.. stuff like my mathematics teacher does..:D |
Forum: C++ Oct 10th, 2008 |
| Replies: 19 Views: 1,511 I guess its not the healthy choice according to him as he says many no...
I'm doubting about the the question.:-/ |
Forum: C++ Oct 10th, 2008 |
| Replies: 19 Views: 1,511 According to the sorting algorithm I have already told you its the Selection sorting.
But i don't think so you can possibly create the batch of no without using array or pointer.
Other crazy... |
Forum: C++ Oct 10th, 2008 |
| Replies: 19 Views: 1,511 Its the simple question ... When we use to learn the C++
This type of Sorting is known as Selection sorting...
Rest you figure it out...:D |