Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags

9 Posted Topics

Member Avatar for nataraja833

Hi Guys , I need guidence on how to approach this problem . I have string of ones and zeros ( input ) and output has to be optimized following below rules 1) total number of one's have to minimum 2) zero from the string cannot be moved from their …

Member Avatar for nataraja833
0
330
Member Avatar for nataraja833

Hi , Can anyone point me to fillPolygon source code , In Graphics.java it is declared as abstract class . - Nataraja G

Member Avatar for nataraja833
0
1K
Member Avatar for nataraja833

Hello , When we do an XOR operation between two rectangles ( one is completly inside of the other ) output in GPC & Clipper is something like , exterior Rectangle + a Hole ( which is interior Rectangle ) for my application output has to be a set of …

0
79
Member Avatar for nataraja833

Hello , Can anyone give me an efficient way to do Rect/Polygon filling as below/Attachment . ![Patterns.png](/attachments/small/3/13ab1a68a958648cc9313476241adfb2.png "align-left") ![Patterns.png](/attachments/large/3/13ab1a68a958648cc9313476241adfb2.png "align-center") as of now I'm drawing lines & single pixel rectangles to do this and my application has slowed down so I'm looking for an alternative . This is an extension …

Member Avatar for nataraja833
0
487
Member Avatar for nataraja833

I've have a String String s = " ~ ( A || B ) && C "; A B C can take 0,1,x they follow Boolean Arithmetic w.r.t 'x' Boolean Arith is as follows 0 || x = x 1 || x = 1 x || x =1 x && …

Member Avatar for Taywin
0
349
Member Avatar for nataraja833

package my_package; my_object obj_instance; String my_string; my_string = obj_instance.toString(); System.out.println(my_string) ; // gives my_package.my_object@asj128 // I've lost track of obj_instance but it in memory // and I want to recover it from my_string , like my_object obj_instance1 obj_instance1 = ( my_object) my_string ; some thing like string to object converstion …

Member Avatar for nataraja833
0
227
Member Avatar for kortneycoles

try // Function Prototypes void print(nodeType *nodeTypePtr); // Function to print a LL copy paste the error

Member Avatar for nataraja833
0
342
Member Avatar for nataraja833

Hi All , This is my code snippet [CODE]typedef struct { char *name; } CELL; typedef struct { CELL *cell; char *name; } INST ; int main () { INST **top_inst_list ; int i,j; char string_name[100]; printf("Enter number of insts in design\n") ; scanf("%d",&i); top_inst_list = (INST **)malloc(sizeof(INST*)*i) ; for …

Member Avatar for deceptikon
0
139
Member Avatar for nezhad

following this thread i wrote the following code int main () { INST **top_inst_list ; int i,j; char string_name[100]; printf("Enter number of insts in design\n") ; scanf("%d",&i); printf("Number of instance %d \n",i); top_inst_list = (INST **)malloc(sizeof(INST*)*i) ; printf ("hi %f \n",top_inst_list); // if (top_inst_list == NULL ) { // // …

Member Avatar for nataraja833
0
572

The End.