Search:

Type: Posts; User: moondrums

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,525

    File handling ang BST

    Hi I need to insert my thesaurus words .txt to my c program applying BST. But I am not sure how. Please help.
    Here are my file:
    1346213463
  2. Replies
    11
    Views
    2,931

    I also have another question: If you use file...

    I also have another question:
    If you use file handling in C is it also possible to apply any of the ADT's?
  3. Replies
    11
    Views
    2,931

    Thank you for all your replies. I have started...

    Thank you for all your replies.

    I have started creating a program and used Graph ADT as I understood it.
    But I still have a problem in inserting. When I try to insert another set of words, the...
  4. Replies
    11
    Views
    2,931

    An Abstract Data Type.. Like Binary search tree...

    An Abstract Data Type.. Like Binary search tree ADT's, graph adt, tries, heap adt, etc..
    I would use these ADT's in creating my database for my Thesaurus program.
    But I'm not sure which adt to use.
  5. Replies
    11
    Views
    2,931

    Thesaurus in C

    I have a project on C Programming of a Thesaurus.
    We are required to use any of the ADT's and I am having a hard time trying to figure out which adt to use.

    Can anybody help?

    Thanks.
  6. Replies
    5
    Views
    2,840

    Something like that. but without the lines..

    Something like that. but without the lines..
  7. Replies
    5
    Views
    2,840

    Please help

    Please help
  8. Replies
    5
    Views
    2,840

    Binary Search Tree in Linked List

    #include <stdio.h>
    #include <conio.h>
    #include <stdlib.h>


    struct bst
    {
    int val, level;
    struct bst *left, *right, *parent;
    };
  9. Replies
    6
    Views
    1,330

    Explain Mutual Exclusion ?

    Hello everybody.
    We will be having a reporting tomorrow in our Programming Languages subject. I am assigned to discuss about Mutual Exclusion in shared data and task but I am having a hard time...
  10. Replies
    1
    Views
    973

    delete function in singly linked list

    #include <stdio.h>
    #include <stdlib.h>
    #include <conio.h>


    struct node
    {
    int data;
    struct node *next;
    };
  11. Replies
    8
    Views
    11,708

    Thanks. I have updated my codes The main c...

    Thanks.

    I have updated my codes
    The main c file:


    #include "NUMSEQ.H"
    #include <stdio.h>
    #include <conio.h>
    #include <stdlib.h>
  12. Replies
    8
    Views
    11,708

    function float max() returns a value of a maximum...

    function float max() returns a value of a maximum number.
    I wanted the result to get what that value is.
    How do I do it right?

    Thanks
  13. Replies
    8
    Views
    11,708

    Thank you grumpy. The error is gone. Except that...

    Thank you grumpy.
    The error is gone. Except that I'm still having 2 other errors.
    Expression syntax in function main.
  14. Replies
    8
    Views
    11,708

    Illegal Characters error

    Hi I am new here.

    I am also a beginner in C programming.
    I made a program that gets 10 values and then get its maximum, minimum or average.
    I have 6 files made.
    The project file, max.c, min.c,...
Results 1 to 14 of 16