top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to implement a linklist to communicate between two processes?

+2 votes
397 views

In linux system how can I implement a linklist to communicate between two processes?

posted Mar 25, 2014 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
By Using IPC(Inter-process communication) concept you can solve this stuff for more info go through the link provided,Good Luck.
http://cboard.cprogramming.com/linux-programming/140726-how-communicate-between-two-processes.html

Similar Questions
+4 votes

Say you have only this structure only to implement Doubly LL

struct Node
{
   int val;
   Node* p;
};
+7 votes

You have a 2D matrix. Only two ZEROs in matrix.
Find the path from 1st zero to 2nd zero with least sum.

1       6       8       9       0       3

4       9       -5      5       11      13

8       9       44      23      15      -20

7       9       7       -13     14      11      

0       16      23      31      16      7

67      5       4       23      21      19

Answer

1       6       8       9       0  ----> 3
                                         |
4       9       -5      5       11      13
                                         |
8       9       44      23      15      -20
                                         |
7 <---- 9 <---- 7 <--- -13 <--- 14 <---  11     
|
0       16      23      31      16        7

67      5       4       23      21       19
+6 votes

For example: It returns ‘b’ when the input is “abaccdeff”.

+7 votes

Given two n-node trees, how many rotations does it take to convert one tree into the other?

...