search
HomeBackend DevelopmentC++Print out all non-repeating words in two given sentences

Print out all non-repeating words in two given sentences

Sep 15, 2023 pm 07:01 PM
wordExtract printsentence

Print out all non-repeating words in two given sentences

In this tutorial, we will identify and print out all non-repeating words in two given sentences. Unrepeated words refer to words that appear only once in two sentences, that is, they do not appear repeatedly in another sentence. This task involves analyzing an input sentence, identifying individual words, and comparing between two sentences to find words that appear only once. The output should be a list of all these words. This task can be accomplished through various programming methods, such as using loops, arrays, or dictionaries.

method

Here are two ways to print out all non-repeating words in two given sentences−

Method 1: Use dictionary

Method 2: Using collections

Method 1: Use dictionary

Using a dictionary, count the number of times each word appears in two phrases. We can then look up the dictionary and print all the words that appear only once. The Dictionary function in C is usually used to output all unique words in two specified sentences. The method involves using a dictionary or hash table data structure to store the frequency of each word in two phrases. We can then iterate through the dictionary and print out terms that appear only once.

grammar

Here is the syntax without the actual code, using dictionary methods in C to print all non-repeating words in two given sentences -

  • Declare a dictionary to store word frequencies

map<string, int> freqDict;
  • Enter two sentences as strings

string sentence1 = "first sentence";
string sentence2 = "second sentence";
  • Split sentences into words and insert into dictionary

istringstream iss (sentence1 + " " + sentence2);
string word;
while (iss >> word) {
   freqDict[word]++;
}
  • Traverse the dictionary and print unique words

for (const auto& [word, frequency]: freqDict) {
   if (frequency == 1) {
      cout << word << " ";
   }
}

algorithm

In C, this is a trick to use dictionary methods to print step by step all non-duplicate items in two specified sentences -

Step 1 - Create two strings s1 and s2 containing sentences.

Step 2 - Declare an empty unordered map string, int> dict, used to record the frequency of each word in the sentence.

Step 3 − Using C’s string stream class, parse the two phrases to extract words.

Step 4 - For each extracted word, check if it appears in the dictionary. If it is, increase its frequency by one. Otherwise, add it to the dictionary with frequency 1.

Step 5 - After processing both sentences, iterate the dictionary and display all terms with frequency 1. These are words that are not repeated in the two sentences.

Step 6 − The time complexity of this method is O(n),

The Chinese translation of

Example 1

is:

Example 1

This code uses an unordered map to store the frequency of each word in the combined phrase. It then loops through the map, adding each word that appears only once to a vector of non-repeating words. Finally, it publishes non-duplicate words. This example implies that the two sentences are hard-coded into the program rather than entered by the user.

#include <iostream>
#include <string>
#include <unordered_map>
#include <sstream>
#include <vector>

using namespace std;

vector<string> getNonRepeatingWords(string sentence1, string sentence2) {
   // Combine the two sentences into a single string
   string combined = sentence1 + " " + sentence2;

   // Create a map to store the frequency of each word
   unordered_map<string, int> wordFreq;

   // Use a string stream to extract each word from the combined string
   stringstream ss(combined);
   string word;
   while (ss >> word) {
      // Increment the frequency of the word in the map
      wordFreq[word]++;
   }

   // Create a vector to store the non-repeating words
   vector<string> nonRepeatingWords;
   for (auto& pair : wordFreq) {
      if (pair.second == 1) {
         nonRepeatingWords.push_back(pair.first);
      }
   }

   return nonRepeatingWords;
}
int main() {
   string sentence1 = "The quick brown fox jumps over the lazy dog";
   string sentence2 = "A quick brown dog jumps over a lazy fox";

   vector<string> nonRepeatingWords = getNonRepeatingWords(sentence1, sentence2);

   // Print the non-repeating words
   for (auto& word : nonRepeatingWords) {
      cout << word << " ";
   }
   cout << endl;

   return 0;
}

Output

a A the The

Method 2: Using collections

This strategy involves using sets to find terms that appear only once in two phrases. We can build term sets for each phrase and then identify the intersection of these sets. Finally, we can iterate over the intersection and output all items that appear only once.

A collection is an associative container that holds different elements in sorted order. We can insert terms from both phrases into the collection and any duplicates will be automatically removed.

grammar

certainly! Following is the syntax you can use in Python to print out all non-repeating words in two given sentences −

  • Define two sentences as strings

sentence1 = "The fox jumps over dog"
sentence2 = "A dog jumps over fox"
  • Split each sentence into a list of words

words1 = sentence1.split()
words2 = sentence2.split()
  • Create a set from these two word lists

set1 = set(words1)
set2 = set(words2)
  • Find unique words through the intersection of sets

Nonrepeating = set1.symmetric_difference(set2)
  • Print unique words

for word in non-repeating:
   print(word)

algorithm

Follow the instructions below to output all non-repeating words in two given sentences using aggregate functions in C -

Step 1 - Create two string variables to store the two sentences.

Step 2 - Using the string flow library, split each sentence into independent words and store them in two separate arrays.

Step 3 - Make two sets, one for each sentence, to store unique words.

Step 4 - Loop through each word array and insert each word into the correct set.

Step 5 - Loop through each set and print out the unique words.

The Chinese translation of

Example 2

is:

Example 2

In this code, we use the string stream library to split each sentence into separate words. We then use two collections, uniqueWords1 and uniqueWords2, to store the unique words in each sentence. Finally, we loop through each set and print out the non-duplicate words.

#include <iostream>
#include <string>
#include <sstream>
#include <set>

using namespace std;

int main() {
   string sentence1 = "This is the first sentence.";
   string sentence2 = "This is the second sentence.";
   string word;
   stringstream ss1(sentence1);
   stringstream ss2(sentence2);
   set<string> uniqueWords1;
   set<string> uniqueWords2;

   while (ss1 >> word) {
      uniqueWords1.insert(word);
   }

   while (ss2 >> word) {
      uniqueWords2.insert(word);
   }

   cout << "Non-repeating words in sentence 1:" << endl;
   for (const auto& w : uniqueWords1) {
      if (uniqueWords2.find(w) == uniqueWords2.end()) {
         cout << w << " ";
      }
   }
   cout << endl;

   cout << "Non-repeating words in sentence 2:" << endl;
   for (const auto& w : uniqueWords2) {
      if (uniqueWords1.find(w) == uniqueWords1.end()) {
         cout << w << " ";
      }
   }
   cout << endl;

   return 0;
}

输出

Non-repeating words in sentence 1:
first 
Non-repeating words in sentence 2:
second

结论

总之,从两个提供的句子中打印所有非重复单词的任务是通过使用各种编程方法来实现的,例如将句子分解为单个单词,利用字典来量化每个单词的频率,以及过滤掉非重复单词。生成的非重复单词集合可以报告给控制台或保存在列表或数组中以供进一步使用。这项工作对于基本的编程文本操作和数据结构操作很有帮助。

The above is the detailed content of Print out all non-repeating words in two given sentences. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
C# vs. C  : History, Evolution, and Future ProspectsC# vs. C : History, Evolution, and Future ProspectsApr 19, 2025 am 12:07 AM

The history and evolution of C# and C are unique, and the future prospects are also different. 1.C was invented by BjarneStroustrup in 1983 to introduce object-oriented programming into the C language. Its evolution process includes multiple standardizations, such as C 11 introducing auto keywords and lambda expressions, C 20 introducing concepts and coroutines, and will focus on performance and system-level programming in the future. 2.C# was released by Microsoft in 2000. Combining the advantages of C and Java, its evolution focuses on simplicity and productivity. For example, C#2.0 introduced generics and C#5.0 introduced asynchronous programming, which will focus on developers' productivity and cloud computing in the future.

C# vs. C  : Learning Curves and Developer ExperienceC# vs. C : Learning Curves and Developer ExperienceApr 18, 2025 am 12:13 AM

There are significant differences in the learning curves of C# and C and developer experience. 1) The learning curve of C# is relatively flat and is suitable for rapid development and enterprise-level applications. 2) The learning curve of C is steep and is suitable for high-performance and low-level control scenarios.

C# vs. C  : Object-Oriented Programming and FeaturesC# vs. C : Object-Oriented Programming and FeaturesApr 17, 2025 am 12:02 AM

There are significant differences in how C# and C implement and features in object-oriented programming (OOP). 1) The class definition and syntax of C# are more concise and support advanced features such as LINQ. 2) C provides finer granular control, suitable for system programming and high performance needs. Both have their own advantages, and the choice should be based on the specific application scenario.

From XML to C  : Data Transformation and ManipulationFrom XML to C : Data Transformation and ManipulationApr 16, 2025 am 12:08 AM

Converting from XML to C and performing data operations can be achieved through the following steps: 1) parsing XML files using tinyxml2 library, 2) mapping data into C's data structure, 3) using C standard library such as std::vector for data operations. Through these steps, data converted from XML can be processed and manipulated efficiently.

C# vs. C  : Memory Management and Garbage CollectionC# vs. C : Memory Management and Garbage CollectionApr 15, 2025 am 12:16 AM

C# uses automatic garbage collection mechanism, while C uses manual memory management. 1. C#'s garbage collector automatically manages memory to reduce the risk of memory leakage, but may lead to performance degradation. 2.C provides flexible memory control, suitable for applications that require fine management, but should be handled with caution to avoid memory leakage.

Beyond the Hype: Assessing the Relevance of C   TodayBeyond the Hype: Assessing the Relevance of C TodayApr 14, 2025 am 12:01 AM

C still has important relevance in modern programming. 1) High performance and direct hardware operation capabilities make it the first choice in the fields of game development, embedded systems and high-performance computing. 2) Rich programming paradigms and modern features such as smart pointers and template programming enhance its flexibility and efficiency. Although the learning curve is steep, its powerful capabilities make it still important in today's programming ecosystem.

The C   Community: Resources, Support, and DevelopmentThe C Community: Resources, Support, and DevelopmentApr 13, 2025 am 12:01 AM

C Learners and developers can get resources and support from StackOverflow, Reddit's r/cpp community, Coursera and edX courses, open source projects on GitHub, professional consulting services, and CppCon. 1. StackOverflow provides answers to technical questions; 2. Reddit's r/cpp community shares the latest news; 3. Coursera and edX provide formal C courses; 4. Open source projects on GitHub such as LLVM and Boost improve skills; 5. Professional consulting services such as JetBrains and Perforce provide technical support; 6. CppCon and other conferences help careers

C# vs. C  : Where Each Language ExcelsC# vs. C : Where Each Language ExcelsApr 12, 2025 am 12:08 AM

C# is suitable for projects that require high development efficiency and cross-platform support, while C is suitable for applications that require high performance and underlying control. 1) C# simplifies development, provides garbage collection and rich class libraries, suitable for enterprise-level applications. 2)C allows direct memory operation, suitable for game development and high-performance computing.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use