Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

How to efficiently remove every occurrence of one string inside another

+1
−8

I have two strings and want to remove every occurrence of the second string inside the first one starting from the beginning of the first string and as if each occurrence was removed immediately. I would like to do so in C in a time-efficient way, i.e. probably with the lowest number of comparisons and include/copy actions.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

5 comment threads

Do My Homework? (1 comment)
Please indicate the actual problem you are having (1 comment)
Maybe add examples? The word "immediately" is not clear; maybe best to clarify it with examples. Also... (2 comments)
Too broad (4 comments)
Concentrate on the core problem (3 comments)

1 answer

+1
−2

I've accidentally disabled my account hence I'm answering the questions that I've answered before again. Adding on to this, I feel like adding a comment, please do bear in mind that this code isn't necessarily working.

Solution:

myProgram = do {
   putStrLn "Enter three sides: ";
   str<-getLine;
   putStr "RightAngle: ";
   print (snd(head (classify (head (strtok str)) (strtok str!!1) (strtok str!!2))));
   putStr "Isosceles: ";
   print (snd (classify (head (strtok str)) (strtok str!!1) (strtok str!!2)!!1));
   putStr "Equilateral: ";
   print (snd(classify (head (strtok str)) (strtok str!!1) (strtok str!!2)!!2));
   putStr "Scalene: ";
   print (snd(classify (head (strtok str)) (strtok str!!1) (strtok str!!2)!!3));
   putStr "End"}```



History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

Question was rolled back, so this answer is obsolete (1 comment)

Sign up to answer this question »