CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: CSharpque

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    878

    algorithm title

    hello

    when write an algorithm then there is title like
    Procedure name(parameter)
    My question is that sometimes instead of procedure there is function and sometimes it is procedure... so when i...
  2. Replies
    3
    Views
    1,672

    Re: Qucik Sort Uisng last element as Pivot

    i know that process but when first partition is done means elements which is less than pivot is in left side and elements which is greater than pivot is in right side of pivot.
    but what is the...
  3. Replies
    3
    Views
    1,672

    Qucik Sort Uisng last element as Pivot

    hello
    can anyone explain quick sort example using last element as pivot element. I know how to sort element using first and middle element as pivot element.
  4. Re: CReate binary tree from given only Inorder traversal

    k thanks for ans
  5. [RESOLVED] CReate binary tree from given only Inorder traversal

    hello
    I know to create binary tree from given any two traversal i.e. Inorder/preorder or inorder/postorder. But can anuone explain how to create binary tree from given Inorder?
    For example...
  6. Replies
    4
    Views
    1,668

    Re: Rebalancing a AVL tree

    can you explain example given in attach file?
  7. Replies
    2
    Views
    972

    Re: Weight balaced tree

    thanks for ans sir
    I have read that and understand what article say but i refer the book "An introduction to data structures with applications" author= "jean paul and palu G" . In book there is...
  8. Replies
    2
    Views
    972

    Weight balaced tree

    can anyone tell me what happen in weight balanced tree with simple example? how to determine weight of each node?
  9. Replies
    4
    Views
    1,668

    Re: Rebalancing a AVL tree

    i have read that article but it shows that transfer node from left to right and right to left...i understand that but it don't show which node become root node when any rotation is occur and why...
  10. Replies
    4
    Views
    1,668

    Rebalancing a AVL tree

    hello

    i have question about AVL tree re balancing. In AVL tree when AVL is unbalanced then how can i decide which node become root node ? I have search in Google but i can't get specific rule or...
  11. Replies
    2
    Views
    9,202

    Re: Algorithm for two way MergeSort

    i am giving sort example like if i have numbers to be sort like
    42 23 74 11 65 58 94 36 99 87
    First i will sort first two elements, then 3 and 4 then 5 and 6 then 7 and 8 and at last 9 and 10...
  12. Replies
    11
    Views
    13,558

    Re: Delete node from BST - iterative

    you are write i have declare target=NULL and also when node have only one child left or right at that time while loop condition become false... but i don't have any idea..can you suggest algorithm...
  13. Replies
    2
    Views
    9,202

    Algorithm for two way MergeSort

    Hello

    I am tracing the algorithm for two way merge sort....This algorithm start with loop like
    Repeat for L=1,2,4,....2^[log2N]-1
    If log2 L is even
    then
    call mergesort

    I...
  14. Replies
    11
    Views
    13,558

    Re: Delete node from BST - iterative

    yes i have use debugger...i have put if condition after completing while loop...


    if(target == NULL)
    {
    if(root->left->data ==num)
    target=root->left;

    else if(root->right->data==num)...
  15. Replies
    11
    Views
    13,558

    Re: Delete node from BST - iterative

    thanks for ans
    my program not work in only some case...For example
    Input data is 50,25,20,40,75,60,80 BST is created with inputted data
    Now first time i delete node 75 then it display ans 50...
  16. Replies
    11
    Views
    13,558

    Delete node from BST - iterative

    anyone help me? plzz
  17. Replies
    11
    Views
    13,558

    Delete node from BST - iterative

    Hello
    I have write program in c++ which delete node from BST. It work for some level.Mean it wrok well when some nodes are delte but when i delete root node program print garbage value infinite...
  18. Replies
    4
    Views
    1,209

    Re: Email sending problem

    i think you saying that whenever any user send inquiry from web then it will like as shown in image....
    so you say that "same source and have similar subject" it means at each time user send...
  19. Replies
    2
    Views
    721

    Re: Find Complexity using Big O

    actually i don't know what is right answer. i find this example from the net.
  20. Replies
    2
    Views
    721

    Find Complexity using Big O

    hello

    Here i trying to find the complexity of given code...


    For(int i=0;i<n;i++) O(n)
    For(int j=0;j<n;j++) O(n) ...
  21. Replies
    8
    Views
    2,149

    Re: Runtime error after hosting the website

    actually hosting done by someone else
  22. Replies
    8
    Views
    2,149

    Re: Runtime error after hosting the website

    sir i have write "telnet" in Run but it's can't find.....error occur "Windows can not find telnet. Make sure you typed name correctly and then try again".
  23. Replies
    4
    Views
    1,209

    Re: Email sending problem

    i think you are write email do not overwrite but how can i explain my question!!!!....it's difficult
    for that My code is



    protected void btnadd_Click(object sender, EventArgs e)
    {
    ...
  24. Replies
    4
    Views
    1,209

    Email sending problem

    hello all

    i have developed website and in it there is one module that send inquiry to the admin. My problem is that email is send properly but when second mail send it will be overwrite for...
  25. Replies
    8
    Views
    2,149

    Re: Runtime error after hosting the website

    can you tell me how to start telnet? n do all the things that you have said... and firewall would be off only for gmail? if i change yahoo then it will be done?
Results 1 to 25 of 54
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured