D:\CurrentProjects\SearsInterviewCode\src\java\calc_value_power_using_node\ValuePowerNode.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 
 6 package calc_value_power_using_node;
 7 
 8 /**
 9  *
10  * @author sameldin
11  */
12 public class ValuePowerNode
13 {
14     ValuePowerNode  prevoiusNode     = null;
15     ValuePowerNode  nextNode         = null;
16     ValuePowerDataObject    localValuePowerDataObject = null;
17 
18     public ValuePowerNode()
19     {
20         localValuePowerDataObject = new ValuePowerDataObject();
21 
22     }
23     /*
24      *
25      */
26 
27     /*
28      *
29      */
30     public static void main (String[] args)
31     {
32         //String localString = "2^(2^(2^(2^1)))";
33         String localString = "2^(2^(2^2))";
34         System.out.println("string ======>:\t" + localString);
35         System.out.println("======valid number=================");
36         System.out.println("========Not valid number ==================");
37     }
38 
39 }
40 
41