Monday, March 17, 2025

C++ Maps

 In C++, the `map` is a container in the Standard Template Library (STL) that is used to store key-value pairs. It is similar to a dictionary or associative array in other programming languages.


The `map` container is implemented as a binary search tree, which means that the keys are automatically sorted in ascending order. This allows for efficient searching, insertion, and deletion of elements.


Here is an example program that demonstrates the usage of the `map` container:


#include <iostream>

#include <map>


int main() {

    // Create a map of integers and their squares

    std::map<int, int> squares;


    // Insert key-value pairs into the map

    squares[1] = 1;

    squares[2] = 4;

    squares[3] = 9;

    squares[4] = 16;


    // Accessing elements in the map

    std::cout << "Square of 2 is: " << squares[2] << std::endl;


    // Iterating over the map

    for (const auto& pair : squares) {

        std::cout << "Square of " << pair.first << " is " << pair.second << std::endl;

    }


    // Modifying elements

    squares[3] = 10;


    // Checking if a key exists in the map

    if (squares.find(5) != squares.end()) {

        std::cout << "Key 5 exists in the map" << std::endl;

    }


    // Erasing elements

    squares.erase(2);


    // Checking the size of the map

    std::cout << "Size of the map: " << squares.size() << std::endl;


    return 0;

}


This program demonstrates the basic operations of the `map` container. It creates a `map` called `squares` and inserts key-value pairs into it. It then accesses and modifies elements in the map, iterates over the map, checks if a key exists, erases an element, and finally prints the size of the map.


The `map` container provides several member functions that can be used to manipulate the data. Some commonly used member functions are:


- `[]` operator: Used to access or modify elements in the map.

- `find()`: Used to search for a specific key in the map.

- `insert()`: Used to insert elements into the map.

- `erase()`: Used to remove elements from the map.

- `size()`: Used to get the number of elements in the map.


These are just a few examples of the member functions provided by the `map` container. There are many more functions available, depending on the specific requirements of your program.


It uses the `std::map` container to store the name and phone number pairs. The program prompts the user for the operation they want to perform and then performs it on the map.

#include <iostream>

#include <map>

#include <string>


int main() {

    std::map<std::string, std::string> phoneBook;


    // Prompt the user for the name and phone number

    std::string name, phone;


    std::cout << "Enter name('end' to stop): ";

    std::cin >> name;

    while (name != "end") {

        std::cout << "Enter phone number: ";

        std::cin >> phone;


        // Add the name and phone number to the phone book

        phoneBook[name] = phone;


        std::cout << "Enter name('end' to stop): ";

        std::cin >> name;

    }


    // Prompt the user for the operation they want to perform

    std::string operation;

    while(true) {

        std::cout << "Enter operation (find, delete, modify, list, exit): ";

        std::cin >> operation;


        if (operation == "exit") {

            break;

        }


        if (operation == "find") {

            // Prompt the user for the name to find

            std::string findName;

            std::cout << "Enter name to find: ";

            std::cin >> findName;


            // Find the name in the phone book

            auto it = phoneBook.find(findName);

            if (it != phoneBook.end()) {

                std::cout << "Found " << findName << " with phone number " << it->second << std::endl;

            } else {

                std::cout << "Not found" << std::endl;

            }

        }


        if (operation == "delete") {

            // Prompt the user for the name to delete

            std::string deleteName;

            std::cout << "Enter name to delete: ";

            std::cin >> deleteName;


            // Delete the name from the phone book

            auto it = phoneBook.find(deleteName);

            if (it != phoneBook.end()) {

                phoneBook.erase(it);

                std::cout << "Deleted " << deleteName << std::endl;

            } else {

                std::cout << "Not found" << std::endl;

            }

        }


        if (operation == "modify") {

            // Prompt the user for the name and new phone number to modify

            std::string modifyName, newPhone;

            std::cout << "Enter name to modify: ";

            std::cin >> modifyName;

            std::cout << "Enter new phone number: ";

            std::cin >> newPhone;


            // Modify the name in the phone book

            auto it = phoneBook.find(modifyName);

            if (it != phoneBook.end()) {

                it->second = newPhone;

                std::cout << "Modified " << modifyName << " with new phone number " << newPhone << std::endl;

            } else {

                std::cout << "Not found" << std::endl;

            }

        }


        if (operation == "list") {

            // List all the names and phone numbers in the phone book

            for (auto it = phoneBook.begin(); it != phoneBook.end(); ++it) {

                std::cout << it->first << ": " << it->second << std::endl;

            }

        }


    }

    return 0;

}


This program uses the `std::map` container to store the name and phone number pairs. It prompts the user for the operation they want to perform (find, delete, modify, or exit) and then performs the operation on the map.


1. Phone Book: As shown in the code snippet you provided, `std::map` can be used to store and manage a phone book. You can store names as keys and phone numbers as values. This allows for efficient searching, insertion, and deletion of entries.


2. User Profile Database: Imagine you are building a user profile database. You can use `std::map` to store user information. The username or user ID can be the key, and the corresponding user data (e.g., name, email, address) can be the value. This allows for easy lookup and modification of user information.


3. Dictionary or Thesaurus: If you are creating a dictionary or thesaurus application, you can use `std::map` to store word definitions. The word can be the key, and the corresponding definition can be the value. This enables efficient lookup and retrieval of word definitions.


4. Cache: If you are implementing a cache, you can use `std::map` to store frequently accessed data. The key can be the request (e.g., URL), and the value can be the corresponding response. This enables efficient lookup and retrieval of cached data.


These are just a few examples of the many use cases for `std::map` in C++. The versatility of `std::map` lies in its ability to efficiently store and manipulate key-value pairs, making it a powerful tool for various applications.

Here are some general main uses of `std::map` in C++:


1. Key-Value Pair Storage: `std::map` is a container that allows you to store key-value pairs. The keys are unique and are used to efficiently search, insert, and retrieve values.


2. Sorted Order: `std::map` maintains a sorted order of key-value pairs. The keys are automatically sorted in ascending order. This allows for efficient searching, insertion, and deletion of elements.


3. Easy Lookup: `std::map` provides efficient lookup operations. You can search for a key in the map using the `find()` function. If the key is found, you can retrieve the corresponding value.


4. Insertion and Modification: You can insert new key-value pairs into the map using the `operator[]` or the `insert()` function. You can also modify the values associated with existing keys.


5. Iteration: `std::map` allows you to iterate over the key-value pairs in sorted order. You can use iterators or range-based for loops to traverse the map.


6. Size and Emptiness: You can check the size of the map using the `size()` function and check if the map is empty using the `empty()` function.


7. Erasure: You can remove elements from the map using the `erase()` function. You can erase a single element or a range of elements.


These are some of the main uses of `std::map` in C++. It provides a convenient way to store and manipulate key-value pairs in a sorted order.


Tuesday, February 6, 2024

Running Golang Code Snippets in Jupyter Lab

The following docker command starts the Golang Jupter Lab notebook:

docker run -it -d -p 9000:8888 --name mygo -v <your-dir>:/notebooks/host janpfeifer/gonb_jupyterlab:latest


Tuesday, April 18, 2023

Running C++ Code Snippets in Jupyter Notebooks

When I first encountered C++ on Jupyter Lab, I was excited to start experimenting with the Dockerfile for the same. Previously, I posted a Dockerfile in my post Programmer's Quest: C++ in Jupyter Docker (progquest.blogspot.com), but it is outdated.

Please use the following Dockerfile going forward. This docker works fine for all C++ (C++11, C++14 & C++17):
FROM docker.io/jupyter/scipy-notebook:latest

RUN mamba install -yn base nb_conda_kernels \
    && mamba create -yn xeus-cling boost \
    && mamba clean -qafy

>> docker build --rm -t mycpp-jupyter .

>> docker run -it -d -p 8888:8888 --name mycpp -v <your dir>:/notebooks mycpp-jupyter

Saturday, August 7, 2021

C++ in Jupyter Docker

Now, you can run C++ code snippets in Jupyter Nottebook.

Docker File

FROM frolvlad/alpine-miniconda3

RUN conda install -y -c conda-forge bash jupyter jupyterlab jupyter_contrib_nbextensions

RUN conda install -y -c conda-forge xeus-cling xtensor xwidgets widgetsnbextension

RUN apk update

RUN apk add nodejs npm

RUN jupyter labextension install @jupyter-widgets/jupyterlab-manager

RUN mkdir /work 

WORKDIR /work

CMD jupyter notebook --allow-root --ip 0.0.0.0

 

Building Docker

docker build --rm -t jupyter-cpp .

Running Docker

docker run -p 8888:8888 -it -d -e JUPYTER_ENABLE_LAB=yes -v <your dir>:/work --name <docker-name> jupyter-cpp

Use the "docker logs <docker-name>" command to get the URL & Token for the Jupyter Notebook.

It supports C++11, C++14 & C++17. 

Thursday, June 24, 2021

Dockers for Jupyter Notebook

 Docker are like mini-Vms but without any kernel of its own and shares the host's kernel. Dockers are implemented based the Linux Kernel virtualization tools like Namespaces & C-Groups.

In the past few days I was trying to install and run Jupyter Notebook in my Windows PC, it has become increasingly frustrating as it takes a lot of time to install and has lot of other shortcoming.

Finally, I gave up installing Jupyter Notebook on my Windows PC, instead I used Docker to install the Jupyter Notebook in my Linux Mint Virtual Machine.

The best and easy way to run Jupyter Notebook Docker is by the following command:

docker run -p 10000:8888 -d -e JUPYTER_ENABLE_LAB=yes -v <your-work-dir>:/home/jovyan/work --name myjupyter jupyter/datascience-notebook

Use the "docker logs <docker-name>" command to get the URL & Token for the Jupyter Notebook.


Friday, November 27, 2020

My Choice

There are lots and lots of Programming Languages in today's world. More and more are proliferating each and every day.
So, some of the people ask me what are languages we need to learn. I tell them that my Choice are:
  • C++ - my favorite
  • Python - scripting language - very fast, very minimal syntax, vast library
  • Haskell - Functional programming language of my choice
  • Nodejs/JavaScript - Web Scripting & Server Scripting
  • Golang - Versatile - combines the elegance of C++ and power of Python

Tuesday, September 17, 2019

MinGW - C++ 8.0 by Stephan T. Lavavej

Stephan T. Lavavej has compiled MinGW with the latest C++17 supporting compiler:

https://nuwen.net/mingw.html