I got the answer:(It's simple )
Take a ArrayList then cast it and find the size of the arraylist. Here it is :
ArrayList count = new ArrayList();
count=(ArrayList) maptabcolname.get("k1"); //here "k1" is Key
System.out.println("number of elements="+count.size());
It will show the size. (Give suggestion). It's working.