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

Search:

Type: Posts; User: sam_guru

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    1,192

    Re: Data Structure with 3 keys

    I think linked list is a good solution
    the data structure would be :
    struct locInfo
    {
    char city[20];
    char state[20]
    char zip[6];
    struct locInfo *pNext;
    }headNode;
  2. Replies
    4
    Views
    3,497

    Re: Galois Field Multiplier,help needed

    What is that 'Galois Field Multiplier' ??
  3. Replies
    4
    Views
    3,054

    Re: Colour Detection

    use getpixel(x,y) function for each pixel
  4. Replies
    9
    Views
    2,854

    Re: three stacks in an array

    make two stacks from end of arrays & another one at the middle of array. Programm this array in a such a way that stack at the middle should check that wheather there is any space at its two ends or...
  5. Replies
    30
    Views
    4,147

    Re: Help with Stack problem

    Using C it becoms very easy. First try using C, once you got the solution then concept will be clear. so after that writing programm in JAVA is not difficult task.
  6. Replies
    30
    Views
    4,147

    Re: Help with Stack problem

    try the solution by C.
  7. Replies
    30
    Views
    4,147

    Re: Help with Stack problem

    just check wheather parantheses opened are closed or not. it means when you got the opening paranthese "(" then push it into stack then when you find the closing paranthese ")" then pop one element...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured