C++ Library –

C++ Library – <exception> ”; Previous Next Introduction It is a standard exception class. All objects thrown by components of the standard library are derived from this class. Therefore, all standard exceptions can be caught by catching this type by reference. Declaration Following is the declaration for std::exception. class exception; Example In below example for std::exception. #include <thread> #include <vector> #include <iostream> #include <atomic> std::atomic_flag lock = ATOMIC_FLAG_INIT; void f(int n) { for (int cnt = 0; cnt < 100; ++cnt) { while (lock.test_and_set(std::memory_order_acquire)) ; std::cout << “Output from thread ” << n << ”n”; lock.clear(std::memory_order_release); } } int main() { std::vector<std::thread> v; for (int n = 0; n < 10; ++n) { v.emplace_back(f, n); } for (auto& t : v) { t.join(); } } Derived types Sr.No. Derived types Definition 1 bad_alloc This exception thrown on failure allocating memory 2 bad_cast This exception thrown on failure to dynamic cast 3 bad_exception This an exception thrown by unexpected handler 4 bad_function_call This exception thrown on bad call 5 bad_typeid This exception thrown on typeid of null pointer 6 bad_weak_ptr It is a bad weak pointer 7 ios_base::failure It is a base class for stream exceptions 8 logic_error It is a logic error exception 9 runtime_error It is a runtime error exception Derived types(through logic_error) Sr.No. Derived types Definition 1 domain_error It is a domain error exception 2 future_error It is a future error exception 3 invalid_argument It is an invalid argument exception 4 length_error It is a length error exception 5 out_of_range It is a out-of-range exception Derived types(through runtime_error) Sr.No. Derived types Definition 1 overflow_error It is an overflow error exception 2 range_error It is a range error exception 3 system_error It is a system error exception 4 underflow_error It is a underflow error exception Derived types(through bad_alloc) Sr.No. Derived types Definition 1 bad_array_new_length It is an exception on bad array length Derived types(through system_error, since C++11) Sr.No. Derived types Definition 1 ios_base::failure It is a base class for stream exceptions Member functions Sr.No. Derived types Definition 1 (constructor) It is constructor exception 2 operator= It is a copy exception 3 what It is used to get string identifying exception 4 (destructor) It is a destroy exception Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <set> ”; Previous Next Introduction A set is an Associative container which contains a sorted set of unique objects of type Key. Each element may occur only once, so duplicates are not allowed. There are four kind of Associative containers: set, multiset, map and multimap. The value of the elements in a set cannot be modified once in the container, i.e., the elements are always const. But they can be inserted or removed from the container. set containers are generally slower than unordered_set containers in accessing individual elements by their key, but they allow the direct iteration on subsets based on their order. Definition Below is definition of std::set from <set> header file template < class Key, class Compare = std::less<Key>, class Allocator = std::allocator<Key> > class set; Parameters Key − Type of the element contained. Key may be substituted by any other data type including user-defined type. Member types Following member types can be used as parameters or return type by member functions. Sr.No. Member types Definition 1 key_type Key 2 value_type Key 3 reference Allocator::reference value_type& 4 const_reference Allocator::const_reference const value_type& 5 pointer Allocator::pointer std::allocator_traits<Allocator>::pointer 6 const_pointer Allocator::const_pointer std::allocator_traits<Allocator>::const_pointer 7 iterator BidirectionalIterator 8 const_iterator constant BidirectionalIterator 9 reverse_iterator std::reverse_iterator <iterator> 10 const_reverse_iterator std::reverse_iterator <const_iterator> 11 size_type Unsigned Integer Type (std::size_t) 12 difference_type Signed Integer Type (std::ptrdiff_t) 13 key_compare Compare 14 value_compare Compare 15 allocator_type Allocator Functions from <set> Below is list of all methods from <set> header. MEMBER FUNCTIONS DEFAULT MEMBER FUNCTIONS Sr.No. Method & Description 1 Default constructor Constructs the set container. 2 Range constructor Constructs the set container with contents of the range. 3 Copy constructor Constructs the set container with the copy of other set. 4 Move constructor Constructs the set container with the contents of other set using move semantics. 5 Initializer-list constructor Constructs the set container with contents of the inializer list. 6 (destructor) Destructs the set container. 7 operator= Assigns values to the set container. ITERATORS Sr.No. Method & Description 1 set::begin Returns the iterator to beginning. 2 set::cbegin Returns the const iterator to beginning. 3 set::end Returns the iterator to end. 4 set::cend Returns the const iterator to end. 5 set::rbegin Returns the reverse iterator to reverse beginning. 6 set::crbegin Return const reverse iterator to reverse beginning. 7 set::rend Returns the reverse iterator to reverse end. 8 set::crend Returns the const reverse iterator to reverse end. CAPACITY Sr.No. Method & Description 1 set::empty Returns wheteher the set container is empty. 2 set::size Returns the number of elements in the set container. 3 set::max_size Returns the maximum number of elements that the set container can hold. MODIFIERS Sr.No. Method & Description 1 set::clear Removes all elements from the set container. 2 set::insert Inserts new element in the set container. 3 set::emplace Inserts new element in the set, if its unique. 4 set::emplace_hint Inserts new element in the set, if its unique, with a hint on the inserting position. 5 set::erase Removes either a single element or a range of elements from the set container. 6 set::swap Exchanges the content of the container by the content of another set container of the same type. LOOKUP Sr.No. Method & Description 1 set::count Returns the number of elements with matching value in the set container. 2 set::find Searches the set container for value and returns an iterator to it if found, else returns an iterator to set::end. 3 set::lower_bound Returns an iterator pointing to the first element in the set container which is not considered to go before value. 4 set::upper_bound Returns an iterator pointing to the first element in the set container which is considered to go after value. 5 set::equal_range Returns the bounds of a range that includes all the elements in the set container that are equivalent to value. OBSERVERS Sr.No. Method & Description 1 set::key_comp Returns a copy of the comparison object used by the set container. 2 set::value_comp Returns a copy of the comparison object used by the set container. ALLOCATOR Sr.No. Method & Description 1 set::get_allocator Returns a copy of the allocator object associated with the set container. Print Page Previous Next Advertisements ”;

C++ STL – Cheat Sheet

C++ STL – Cheat Sheet ”; Previous Next This C++ STL cheatsheet covers a wide range of topics from basic STL like vectors, hashmaps, sets, etc., to advanced concepts like functors, iterators, and so on. It is designed for programmers who want to quickly read through key concepts along with the syntax and related examples. Introduction The Standard Template Library (STL) is a C++ library that contains all class and function templates. It is used for implementing the basic Data Structures (like Hashset, Heap, List, etc.) and functions (like math, algorithms, etc.), and contains all containers available in C++ programming language. Components of STL Standard Template Library contains of several containers and functions, and can be categorized in the following manner − Containers Functors Algorithms Iterators STL Containers The STL container template class contains data structures like Dynamic Arrays (or Vectors, Lists), Hashmaps, Hashsets, Trees, Linked Lists, etc. These are used for storing and performing operations on the data. The container template has the following components − Sequential Containers Container Adapters Associative Containers Unordered Containers Each container has its respective header file, which can be included at the start of the program. For example, the std::vector is included in the #include<vector> library. Sequential Containers The sequential containers implement the data structures with sequential access. These include − Vector List Deque Array Forward List Container Adapters The container adapters implement data structures like queues, stacks, etc by providing different interfaces for sequential containers. These include − Stack Queue Priority Queue Associative Containers The associative containers are used to store ordered data that can be quickly searched using their key value. These include − Set Multiset Map Multimap Unordered Containers The unordered containers are similar to associative containers but the only difference is that they don’t store sorted data. Still, these containers provide quick search time using key-value pairs. They are − Unordered Set Unordered Multiset Unordered Map Unordered Multimap Now that we have established a learning graph of all containers, we will briefly explain each container in the STL with an exemplar code − Vector in STL The vector is initialized as a dynamic array at runtime, and its size is variable. It can be found in the C++ <vector> header file. Syntax vector<data_type> vec1; //1D vector vector<vector<data_type>> vec2; //2D vector vector<container_type<data_type>> vec3; //2D vector of other container vector<data_type> vec1(n); //vector of size n vector<data_type> vec1(n,k); // vector of size n, with each element=k There are different functions in the vector template. These are explained briefly in the table below − S.No. Function Function Explanation TC 1. begin() Returns an iterator to the first element. O(1) 2. end() Returns an iterator to the theoretical element after the last element. O(1) 3. size() Returns the number of elements present. O(1) 4. empty() Returns true if the vector is empty, false otherwise. O(1) 5. at() Return the element at a particular position. O(1) 6. assign() Assign a new value to the vector elements. O(n) 7. push_back() Adds an element to the back of the vector. O(1) 8. pop_back() Removes an element from the end. O(1) 9. insert() Insert an element at the specified position. O(n) 10. erase() Delete the elements at a specified position or range. O(n) 11. clear() Removes all elements. O(n) Here, TC indicates time complexity of different member functions of the vector template. For more information on time complexity, visit this article − Time complexity. Example // C++ program to illustrate the vector container #include <iostream> #include <vector> using namespace std; int main(){ int n=2; vector<int> vec1 = { 1, 2, 3, 4, 5 }; vector<int> vec2(n,0); vector<vector<int>> vec3(n,vector<int>(2*n,1)); vec1.push_back(6); cout << “vec1: “; for (int i = 0; i < vec1.size(); i++) { cout << vec1[i] << ” “; } cout << endl<<“vec2: “; for (int i = 0; i < vec2.size(); i++) { cout << vec2[i] << ” “; } cout << endl; vec1.erase(vec1.begin() + 4); cout << “vec1 after erasing: “; for (auto i = vec1.begin(); i != vec1.end(); i++) { cout << *i << ” “; } cout << endl; cout << “vec3:-” << endl; for (auto i : vec3) { for (auto j : i) { cout << j << ” “; } cout << endl; } cout << endl; vector<pair<int,int>> vec4; vec4.push_back({2,3}); vec4.push_back({4,3}); cout<<“vector of pairs, vec4 : “<<endl; for(auto i: vec4){ cout<<i.first<<” “<<i.second<<endl; } return 0; } Output vec1: 1 2 3 4 5 6 vec2: 0 0 vec1 after erasing: 1 2 3 4 6 vec3:- 1 1 1 1 1 1 1 1 vector of pairs, vec4 : 2 3 4 3 List in STL The list container is initialized as a doubly linked list, whereas for implementing a singly linked list, we use a forward_list. It can be found in the C++ <list> header file. Syntax list<data_type> list1; There are different functions in the list template. These are explained briefly in the table below − S.No. Function Function Explanation TC

C++ Useful Resources

C++ – Useful Resources ”; Previous Next The following resources contain additional information on C++. Please use them to get more in-depth knowledge on this topic. Useful Video Courses C Language Online Training Best Seller 69 Lectures 6 hours Tutorialspoint More Detail C++ Development Complete Course 78 Lectures 5.5 hours Frahaan Hussain More Detail C # in Telugu 38 Lectures 6.5 hours Vijay Kumar Parvatha Reddy More Detail C# in Depth: A Comprehensive Course (Beginner-To-Advanced) 108 Lectures 8 hours TELCOMA Global More Detail C# Coding Basics Course – For Beginners 86 Lectures 6.5 hours Metla Sudha Sekhar More Detail Learn C++ Programming From Scratch in Tamil 56 Lectures 13 hours Programming Line More Detail Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <thread> ”; Previous Next Introduction Thread is a sequence of instructions that can be executed concurrently with other such sequences in multithreading environments, while sharing a same address spac. Member types Sr.No. Member type & description 1 id It is a thread id. 2 Native handle type It is a native handle type. Member functions Sr.No. Member function & description 1 (constructor) It is used to construct thread. 2 (destructor) It is used to destructor thread. 3 operator= It is a move-assign thread. 4 get_id It is used to get thread id. 5 joinable It is used to check if joinable. 6 join It is used to join thread. 7 detach It is used to detach thread. 8 swap It is used to swap threads. 9 native_handle It is used to get native handle. 10 hardware_concurrency [static] It is used to detect hardware concurrency. Non-member overloads Sr.No. Non-member overload & description 1 swap (thread) It is used to swap threads. Example In below example for std::thread. #include <iostream> #include <thread> void foo() { std::cout << ” foo is executing concurrently…n”; } void bar(int x) { std::cout << ” bar is executing concurrently…n”; } int main() { std::thread first (foo); std::thread second (bar,0); std::cout << “main, foo and bar now execute concurrently…n”; first.join(); second.join(); std::cout << “foo and bar completed.n”; return 0; } The output should be like this − main, foo and bar now execute concurrently… bar is executing concurrently… foo is executing concurrently… foo and bar completed. Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <streambuf> ”; Previous Next Introduction It is a stream buffer and it is to be used in combination with input/output streams. Class templates Sr.No. Class & Definition 1 basic_streambuf It is a basic stream buffer 2 wstreambuf It is used in base buffer class in stream Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <atomic> ”; Previous Next Introduction These are types that encapsulate a value whose access is guaranteed to not cause data races and can be used to synchronize memory accesses among different threads and he atomic library provides components for fine-grained atomic operations allowing for lockless concurrent programming. Each atomic operation is indivisible with regards to any other atomic operation that involves the same object. Atomic type Sr.No. Member types & Definition 1 atomic Atomic class template and specializations for bool, integral, and pointer types C-style atomic types The following are atomic types and also defined in this header. contained type atomic type description bool atomic_bool char atomic_char atomics for fundamental integral types. These are either typedefs of the corresponding full specialization of the atomic class template or a base class of such specialization. signed char atomic_schar unsigned char atomic_uchar short atomic_short unsigned short atomic_ushort int atomic_int unsigned int atomic_uint long atomic_long unsigned long atomic_ulong long long atomic_llong unsigned long long atomic_ullong wchar_t atomic_wchar_t char16_t atomic_char16_t char32_t atomic_char32_t intmax_t atomic_intmax_t atomics for width-based integrals (those defined in <cinttypes>). Each of these is either an alias of one of the above atomics for fundamental integral types or of a full specialization of the atomic class template with an extended integral type. Where N is one in 8, 16, 32, 64, or any other type width supported by the library. uintmax_t atomic_uintmax_t int_leastN_t atomic_int_leastN_t uint_leastN_t atomic_uint_leastN_t int_fastN_t atomic_int_fastN_t uint_fastN_t atomic_uint_fastN_t intptr_t atomic_intptr_t uintptr_t atomic_uintptr_t size_t atomic_size_t ptrdiff_t atomic_ptrdiff_t Operations on atomic types Sr.No. Operations & Definition & 1 atomic_is_lock_free It is used to checks if the atomic type”s operations are lock-free 2 atomic_store & atomic_store_explicit It automically replaces the value of the atomic object with a non-atomic argument 3 atomic_load & atomic_load_explicit It atomically obtains the value stored in an atomic object 4 atomic_exchange & atomic_exchange_explicit It atomically replaces the value of the atomic object with non-atomic argument and returns the old value of the atomic 5 atomic_compare_exchange_weak & atomic_compare_exchange_weak_explicit & atomic_compare_exchange_strong & atomic_compare_exchange_strong_explicit It atomically compares the value of the atomic object with non-atomic argument and performs atomic exchange if equal or atomic load if not 6 atomic_fetch_add & atomic_fetch_add_explicit It adds a non-atomic value to an atomic object and obtains the previous value of the atomic 7 atomic_fetch_sub & atomic_fetch_sub_explicit It subtracts a non-atomic value from an atomic object and obtains the previous value of the atomic 8 atomic_fetch_and & atomic_fetch_and_explicit It replaces the atomic object with the result of logical AND with a non-atomic argument and obtains the previous value of the atomic 9 atomic_fetch_or & atomic_fetch_or_explicit It replaces the atomic object with the result of logical OR with a non-atomic argument and obtains the previous value of the atomic 10 atomic_fetch_xor & atomic_fetch_xor_explicit It replaces the atomic object with the result of logical XOR with a non-atomic argument and obtains the previous value of the atomic Flag type and operations Sr.No. Flag type & Definition 1 atomic_flag The lock-free boolean atomic type 2 atomic_flag_test_and_set & atomic_flag_test_and_set_explicit It atomically sets the flag to true and returns its previous value 3 atomic_flag_clear & atomic_flag_clear_explicit It atomically sets the value of the flag to false Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <ostream> ”; Previous Next Introduction It is an output stream objects can write sequences of characters and represent other kinds of data. Specific members are provided to perform these output operations. Definition Below is definition of std::ostream. typedef basic_ostream<char> ostream; Parameters charT − Character type. traits − Character traits class that defines essential properties of the characters used by stream objects. Member types Sr.No. Member types Definition 1 event Type to indicate event type 2 event_callback Event callback function type 3 failure Base class for stream exceptions 4 fmtflags Type for stream format flags 5 Init Initialize standard stream objects 6 iostate Type for stream state flags 7 openmode Type for stream opening mode flags 8 seekdir Type for stream seeking direction flag 9 basic_istream::sentry It is used to prepare stream for input 10 seekdirbasic_ostream::sentry It is used to prepare stream for output Public Member Functions Sr.No. Member types Definition 1 (constructor) Construct object (public member function ) 2 (destructor) Destruct object (public member function ) Public member functions Sr.No. Member Functions Definition 1 gcount It is used to get character count 2 get It is used to get characters 3 getline It is used to get line 4 ignore It is used to extract and discard characters 5 peek It is used to peek next character 6 read It is used to read block of data 7 readsome It is used to Read data available in buffer 8 putback It is used to put character back 9 unget It is used to unget character Formatted output Sr.No. Output Definition 1 operator>> It is used to extract formatted input Unformatted output Sr.No. Output Definition 1 put It is used to put character 2 write It is used to write block of data Positioning Sr.No. Position Definition 1 tellp It is used to get position in output sequence 2 seekp It is used to set position in output sequence Synchronization Sr.No. Synchronization Definition 1 flush It is used to flush output stream buffer Protected member functions Sr.No. Member Functions Definition 1 operator= It is used to move assignment 2 swap It is used to swap internals Public member functions inherited from basic_ios Sr.No. Member types Definition 1 good It is used to check whether state of stream is good 2 eof It is used to check whether eofbit is set 3 fail It is used to check whether either failbit or badbit is set 4 bad It is used to check whether badbit is set 5 operator! Evaluate stream 6 rdstate It is used to get error state flags 7 setstate It is used to set error state flag 8 clear It is used to set error state flag 9 fill Get/set fill character 10 exceptions It is used to get/set exceptions mask 11 imbue Imbue locale 12 tie It is used to get/set tied stream 13 rdbuf It is used to get/set stream buffer 14 narrow Narrow character 15 widen Widen character Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <istream> ”; Previous Next Description The Istream used for header providing the standard input and combined input/output stream classes. Class templates The class templates of istream should be as follows − Sr.No. Stream Definition 1 basic_istream It is used in an Input stream 2 basic_iostream It is used in an Input/output stream Classes The classes of istram should be as follows. Sr.No. Classes Definition 1 istream It is used in an Input stream 2 iostream It is used in an Input/output stream 3 wistream It is used in an Input stream (wide) 4 wiostream It is used in an Input/output stream (wide) Input manipulators (functions) Sr.No. Functions Definition 1 ws It is used to extract whitespaces Print Page Previous Next Advertisements ”;

C++ Library –

C++ Library – <iostream> ”; Previous Next Description It is used in standard Input / Output Streams Library. Declaration Following is the declaration for iosstream function. C++98 Including this header may automatically include other headers, such as <ios>, <streambuf>, <istream>, <ostream> and/or <iosfwd>. C++11 Including <iostream> automatically includes also <ios>, <streambuf>, <istream>, <ostream> and <iosfwd>. Objects The objects of iosstream should be like this − Narrow characters (char) Sr.No. Characters Definition 1 cin Standard input stream 2 cout Standard output stream 3 cerr Standard output stream for errors 4 clog Standard output stream for logging Wide characters (wchar_t) Sr.No. Characters Definition 1 wcin Standard input stream (wide) 2 wcout SStandard output stream (wide) 3 wcerr Standard output stream for errors (wide-oriented) 4 wclog Standard output stream for logging (wide) Print Page Previous Next Advertisements ”;