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
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for dboltz03

Hi all, Recently I've run into a problem where a string I am reading from a file is being read in with a nonprinting character appended to the end. The character being appended is U+0020. I'm just unsure how to get rid of this. I know that I could just …

Member Avatar for vijayan121
0
2K
Member Avatar for dboltz03

I'm experiencing a "sequence not ordered" error when this code is executed and I'm not sure why. Any help would be appreciated, thanks. [CODE]void merge_sort(vector<int>& v, int from, int to, vector<int>& a){ if(from == to) return; int mid = (from + to) / 2; merge_sort(v, from, mid, a); merge_sort(v, mid …

Member Avatar for Ancient Dragon
0
76