If you are into optimization, and assuming the input is always one of the four characters, the function below might be worth a try as a replacement for the map:
char map(const char in) { return ((in & 2) ? '\x8a' - in : '\x95' - in); }
It works based on the fact that you are dealing with two symmetric pairs. The conditional works to tell apart the A/T pair from the G/C one (‘G’ and ‘C’ happen to have the second-least-significant bit in common). The remaining arithmetics performs the symmetric mapping. It’s based on the fact that a = (a + b) – b is true for any a,b.
Related Posts:
- What is C# equivalent of
- C++ Loop through Map
- How to find if a given key exists in a C++ std::map
- How can I print out C++ map values?
- Determine if map contains a value for a key?
- How exactly do lookup tables work and how to implement them?
- Google map that opens in a new window
- Is there a tool to get the GPS data from a WordPress blog on a map? [closed]
- How do I find the length of an array?
- C++ — expected primary-expression before ‘ ‘
- Using getline() with file input in C++
- lvalue required as left operand of assignment error when using C++
- g++ ld: symbol(s) not found for architecture x86_64
- Making my own toString() method on c++ struct
- Struct Constructor in C++?
- What is meant with “const” at end of function declaration? [duplicate]
- What’s the C++ version of Java’s ArrayList
- How can I solve the error LNK2019: unresolved external symbol – function?
- C++ Error: ISO C++ Forbids Comparison Between Pointer and Integer [-fpermissive]
- What are forward declarations in C++?
- Does a Java to C++ converter/tool exist?
- How to write C++ on Mac?
- C++ string to double conversion
- C++ Linked List Node with class
- ‘was not declared in this scope’ error
- Is there a function to copy an array in C/C++?
- C++ error: no matching constructor for initialization of
- Angular map. What is it?
- Why use string::iterator rather than index?
- C++ request for member ‘’ in ‘’, which is of non-class type ‘’
- Using O_RDWR vs O_RDONLY | O_WRONLY
- How to implement the factory method pattern in C++ correctly
- c++ array – expression must have a constant value
- getline() does not work if used after some inputs
- Passing a 2D array to a C++ function
- ‘typeid’ versus ‘typeof’ in C++
- Fatal error: iostream: No such file or directory in compiling C program using GCC
- Thread pooling in C++11
- What are the differences between struct and class in C++?
- What is ‘\0’ in C++?
- Generate random float between two floats
- What is std::move(), and when should it be used?
- How can I get list of values from dict?
- Undefined reference to class constructor, including .cpp file fixes
- Deleting a dynamically allocated 2D array
- How to add element to C++ array?
- Difference of keywords ‘typename’ and ‘class’ in templates?
- Quick Way to Implement Dictionary in C
- Error: Jump to case label in switch statement
- What does int & mean
- Split a string into an array in C++
- C++ Why Is There “Unknown Type” When Class Header is Included?
- Invalid conversion from “const char*” to “char” error [duplicate]
- Initializing a static std::map
in C++ - C++ strings and pointers
- delete vs delete[] operators in C++
- What is the preferred way to include error messages in C++?
- How to Convert a C++ String to Uppercase
- C++ Fractions Class
- #pragma once vs include guards?
- Debug vs Release in CMake
- C++ Initializing a Global Array
- How to convert an ASCII char to its ASCII int value?
- Warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11?
- C++ – pointer being freed was not allocated error
- Reference to non-static member function must be called
- Call to non-static member function without an object argument compiler error
- C++ compile time error: expected identifier before numeric constant
- How can I assign an array from an initializer list?
- I get this error: “glibc detected”
- Python Add to dictionary loop
- How can I get and use the header file
in my C++ program? - cin.eof() functionality
- Implementing a tree in C++
- Drawing Circle with OpenGL
- AttributeError: ‘str’ object has no attribute ‘items’
- Run-Time Check Failure #2 – Stack around the variable ‘foo’ was corrupted
- “vector” was not declared in this scope
- Converting string to ASCII
- got “cannot appear in a constant-expression” when using template
- C++ ostream and ofstream conversions
- C++ discards qualifiers
- What is the source of the data for the ProgramFiles, ProgramW6432Dir, ProgramFilesDir (x86), CommonProgramFiles environment variables?
- C++ : Exception occurred in script: basic_string::_S_construct NULL not valid
- Error: “expected primary-expression before int”
- C++ Error: Expected a type specifier
- Where to declare/define class scope constants in C++?
- Friend methods error
- Does WPF Work with C++?
- Multiple inputs on one line
- When to use a Map instead of a List in Java?
- Why do I get: -9223372036854775808
- Compiler error C4430: missing type specifier – int assumed [duplicate]
- ‘&’ : illegal operation on bound member function expression [duplicate]
- Multiple definitions of “Main”
- C# Dictionary get item by index
- Getting the error floating point exception: 8
- WordPress Google Maps
- Best way to show map of tagged posts?
- Add Google Map By Address