I am trying to make my code run faster and I am using the time functionality in Linux and this is what I am getting. I am wondering which number should I be looking at to determine how fast it's actually running.
0.019u 0.001s 0:02.50 0.4% 0+0k 0+0io 2pf+0w
Also, I am new to this so I'd appreciate it if someone could explain to me what each of the numbers mean.
In my program, I need to read in a large input of lines and parse them, and I am storing them in a vector of struct. I will later access this vector. I am wondering if, it will make my code any faster if I store a vector of pointer to struct as opposed to a vector of struct.
I'd appreciate any input. Thank you.