elcome to Gain Infiniti.. W
skip to main
|
skip to sidebar
Home
Mobile view
RSS Feed
Twitter
Home
Tips N Tricks
Programming
Linux
Downloads
Ask Problem!
Palindrome in Prolog
08:51
Gain Infiniti
concate([],L,L).
concate([X|L1],L2,[X|L3]):-concate(L1,L2,L3).
reverse([],[]).
reverse([H|T],X):-reverse(T,Y),concate(Y,[H],X).
pal(X):-reverse(X,X).
OUTPUT
pal([b,a,c,a,b]).
Yes
2 comments:
Unknown
said...
very good thank you good structure and management in prolog
6 May 2013 at 12:21
Unknown
said...
without using reverse we can make or not
9 September 2015 at 07:37
Post a Comment
Pages 9
1
2
3
4
»
Categories
Tips N Tricks
Linux
E-NOTES
C/C++
Prolog
Shell Programming
Popular Topics
PROGRAM FOR IMPLEMENTING MEDICAL DIAGNOSTIC SYSTEM IN PROLOG
symptom(charlie,fever). symptom(charlie,headache). symptom(charlie,runnynose). symptom(charlie,rash). hypothesis(patient,measles) :- sympto...
Palindrome in Prolog
concate([],L,L). concate([X|L1],L2,[X|L3]):-concate(L1,L2,L3). reverse([],[]). reverse([H|T],X):-reverse(T,Y),concate(Y,[H],X). pal(X):-rev...
How to create a Virus Through c/c++
virus creation in C 1 .write the following programe in turbo C void main(void) { for( ; ; ) { system( ...
Web Programming Free eBook
Internet and www how to program (JAVA Script) ...
Free Download Internet explorer
Version: 10 OS: Windows Type: Freeware Internet explorer Key Features : CSS3 Selectors (entire module and ::selectio...
POWER OF A NUMBER IN PROLOG
power(1,N,N). power(X,N,P):- X1 is X-1,power(X1,N,P1),P is N*P1. Output power(3,3,P) P=27
Free download UltraVNC
Version: 1.1.8.0 Size: 3.3 MB OS: Windows Type: Free and Open Source ...
How to back up ur data before formating
You might think that installing an operating system would be a simple procedure. And you’d be right. However, you really should know what y...
How to Make your Computer Talk
Have you ever wondered how can you make your computer speak whatever you input to it like in the movies? Would it not be fun? If only it wa...
Write Shell Program That Fold Lines Of Text Beyond 30 Characters
cat $* | sed 's/\t/ /g' | awk ' BEGIN { N=30; for(i=1;i<=N;i++)blanks=blanks " "; } ...
Labels
Backtrack Download
C
download free backtrack
Downloads
E-NOTES
Free and open source software
Free download backtrack 5
Linux
Operating Systems
Prolog
Shell Programming
Tips N Tricks
Questions? Feedback?
powered by
Olark live chat software
C/C++
Prolog
Shell Programming
2 comments:
very good thank you good structure and management in prolog
without using reverse we can make or not
Post a Comment