Search:

Type: Posts; User: reelbigtim

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    3,188

    I figured it out... Very strange solution; just a...

    I figured it out... Very strange solution; just a case of creating a function... Don't know why it works, but it works persistently.



    #include<stdio.h>
    #include<sys/types.h>...
  2. Replies
    9
    Views
    3,188

    Tried both those... I always get nailed with a...

    Tried both those...

    I always get nailed with a HTTP 400 error at the end... For the 2nd send.
  3. Replies
    9
    Views
    3,188

    Persistent HTTP Requests

    I'm writing a program in C that connects through the S

    ocket and establishes and TCP/IP connection.

    The program connects to http://news.bbc.co.uk and relays the HTML code back for the front...
  4. Thread: AVL Tree

    by reelbigtim
    Replies
    1
    Views
    950

    AVL Tree

    I have an issue with my refreshly converted Binary Tree.

    I've posted where I think the issue is, but I can't seem to find it.

    It seems to finish, but doesn't finish correctly. The tree is to...
  5. Replies
    1
    Views
    981

    Binary Search Tree Trouble

    For the life of me, I can figure out why my treeRetrieve function isn't working. It seems that the create and insert seems to work.

    I'm looking for the program to input a txt file, and out the...
  6. Replies
    3
    Views
    6,805

    Multi-directory Makefile

    I'm looking to make a makefile which compiles 1 program, with a header file in a different directory.

    I've got:
    WordCount.c
    adt/Table.c
    adt/Table.h

    Does anyone know how to make this compile?...
  7. Thread: Hash Tables

    by reelbigtim
    Replies
    3
    Views
    988

    What seems to be my biggest issue is, say in my...

    What seems to be my biggest issue is, say in my tableGetEntry function...



    InfoType *e;
    unsigned int hashvalue, index;
    hashvalue = hash(table_ptr,word);
    index =...
  8. Thread: Hash Tables

    by reelbigtim
    Replies
    3
    Views
    988

    Hash Tables

    I'm currently in a data structures course at school. We've had to build a word counting program, and at the moment.. I'm completely stuck. For some reason, I get a struct that doesn't seem to...
Results 1 to 8 of 9