Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. paulsowden

    Storing Session Variables In Perl

    Is it possible to store session variables on a server using Perl, i'm a beginner and i'm struggling a bit. Thanks
  2. paulsowden

    Unix system call for file directories

    Is there a system call to check whether a specified directory is a decendent to another directory? I'm moving around a directory using chdir and i need to make sure i stay within the realms of a particular sub tree. Any ideas? Cheers Paul
  3. paulsowden

    Binary Search Trees

    here is the code i've written #include "tree.h" BTREE new_node(void) { return(malloc(sizeof(NODE))); } BTREE init_node(DATA d1, BTREE p1, BTREE p2) { BTREE t; t = new_node(); t -> d = d1; t -> left = p1; t -> right = p2; return t; } BTREE...
  4. paulsowden

    Binary Search Trees

    How do you create a binary search tree with more than one data element in it? I can create a tree with single data items (ints or chars) but soon as i come to add more variables it breaks. Any suggestions? Paul
  5. paulsowden

    Critical Paths

    Does anyone know how to implement a critical path algorithm in java on an edge list graph??????
  6. paulsowden

    ADTS

    Does anyone have a good implementation of a graph adt?
  7. paulsowden

    creating html docs in java

    Does anyone know how we can convert the data in a jPanel into a html document so it can be exported?
  8. paulsowden

    why can I not create an instance in a method, but I can in main??

    Do you go to Aberystwyth uni? I do and i remeber doing that worksheet last year. Declare r1 as a variable at the begining of the class then instansiate it wherever you want, you'll always have access to it.
  9. paulsowden

    Undo mechanisms

    Does anyone know how you would implement an "Undo"/"redo" facility in java???
  10. paulsowden

    Graph Data Structures

    I need to create a gantt chart program and i want to use a graph adt to store the data, i understand the concepts of a graph but dont know how to go about immplementing one in Java. Can anyone help?????

Part and Inventory Search

Back
Top