You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

a)

 

function boolean = isPalindrome(word)
word = lower(word);
for i = 1:floor(length(word)/2)
    if word(i) ~= word(length(word)-i+1)
        boolean = false;
        return
    end
end
boolean = true;
end

 

b)

 

function boolean = isPalindromeSentence(sentence)
word = '';
counter = 1;
for i = 1:length(sentence)
    if strcmp(sentence(i), ' ') || strcmp(sentence(i), '.') || strcmp(sentence(i), ',')
        continue 
    end
    word(counter) = sentence(i);
    counter = counter + 1;
end
boolean = isPalindrome(word);
end

c)

 

 

function res = sequenceFinder (sequence,start,stop )
len = 0;
index = 0;
for i = 1:length(sequence)-length(stop)
    if (length(start) <= length(sequence(i:end))) && strcmp(start,sequence(i:i+length(start)-1))
        indexS = i;
    elseif (length(stop) <= length(sequence(i:end))) && strcmp(stop,sequence(i:i+length(start)-1))
        indexE = i;
        if len < indexE -indexS
            len = indexE -indexS;
            index = indexS;
        end
    end  
end
res = sequence(index:index+len+length(stop)-1);
end


 

 

function res = sequenceFinder (sequence,start,stop )
len = 0;
index = 0;
for i = 1:length(sequence)-length(stop)
    if (length(start) <= length(sequence(i:end))) && strcmp(start,sequence(i:i+length(start)-1))
        indexS = i;
    elseif (length(stop) <= length(sequence(i:end))) && strcmp(stop,sequence(i:i+length(start)-1))
        indexE = i;
        if len < indexE -indexS
            len = indexE -indexS;
            index = indexS;
        end
    end 
end
res = sequence(index:index+len+length(stop)-1);
end

 

Eventuelt kan den lages litt enklere ved hjelp av matlabs strfind() funksjon.

  • No labels