How do I remove duplicate elements in an char array? This is my code, but it doesn't work:    const int TEST1_NRULES = 4;     char test1win[4][MAX_WORD_LENGTH+1] = {         "stop", "no", "no", "no"     };    char test1wout[4][MAX_WORD_LENGTH+1] = {        "family", "ik",  "bob", "bro"

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 17RQ
icon
Related questions
Question

How do I remove duplicate elements in an char array?

This is my code, but it doesn't work:

   const int TEST1_NRULES = 4;

    char test1win[4][MAX_WORD_LENGTH+1] = {

        "stop", "no", "no", "no"

    };

   char test1wout[4][MAX_WORD_LENGTH+1] = {

       "family", "ik",  "bob", "bro"

   };

    for (int i = 0; i < TEST1_NRULES; ++i) {

        for (int p = i + 1; p < TEST1_NRULES; ++p) {

            if (strcmp(test1win[i], test1win[p]) == 0)

                for (int k = i; k < TEST1_NRULES; ++k) {

                    for (int j = 0; j < MAX_WORD_LENGTH; ++j) {

                        test1win[k][j] = test1win[k + 1][j];

                }

            }

        }

    }

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,