Skip to main content
MyWebForum

Back to all posts

How to Remove Sub-Lists In Prolog?

Published on
3 min read
How to Remove Sub-Lists In Prolog? image

Best Prolog Programming Guides to Buy in January 2026

1 Programming in Prolog: Using The Iso Standard

Programming in Prolog: Using The Iso Standard

  • AFFORDABLE PRICES FOR QUALITY READS, SAVING MONEY FOR YOU!
  • ECO-FRIENDLY CHOICE: REDUCE WASTE BY BUYING USED BOOKS!
  • VARIED SELECTION: DISCOVER HIDDEN GEMS AND OUT-OF-PRINT TITLES!
BUY & SAVE
$54.64 $74.99
Save 27%
Programming in Prolog: Using The Iso Standard
2 Prolog Programming for Artificial Intelligence

Prolog Programming for Artificial Intelligence

BUY & SAVE
$95.99
Prolog Programming for Artificial Intelligence
3 Adventure in Prolog

Adventure in Prolog

BUY & SAVE
$14.00
Adventure in Prolog
4 Logic Programming with Prolog

Logic Programming with Prolog

BUY & SAVE
$49.37
Logic Programming with Prolog
5 The Art of Prolog: Advanced Programming Techniques (Mit Press Series in Logic Programming)

The Art of Prolog: Advanced Programming Techniques (Mit Press Series in Logic Programming)

BUY & SAVE
$122.06
The Art of Prolog: Advanced Programming Techniques (Mit Press Series in Logic Programming)
6 The Craft of Prolog (Logic Programming)

The Craft of Prolog (Logic Programming)

BUY & SAVE
$50.00
The Craft of Prolog (Logic Programming)
7 Clause and Effect: Prolog Programming for the Working Programmer

Clause and Effect: Prolog Programming for the Working Programmer

  • AFFORDABLE PRICES FOR QUALITY PRE-OWNED LITERATURE.
  • ENVIRONMENTALLY FRIENDLY CHOICE: REDUCE WASTE WITH USED BOOKS.
  • UNIQUE FINDS: DISCOVER RARE TITLES AND HIDDEN GEMS!
BUY & SAVE
$84.99
Clause and Effect: Prolog Programming for the Working Programmer
8 Expert Systems in Prolog

Expert Systems in Prolog

BUY & SAVE
$14.00
Expert Systems in Prolog
9 Learn Prolog Now! (Texts in Computing, Vol. 7)

Learn Prolog Now! (Texts in Computing, Vol. 7)

  • QUALITY ASSURANCE: EACH BOOK IS INSPECTED FOR READABILITY AND USABILITY.
  • ECO-FRIENDLY CHOICE: SAVE MONEY AND REDUCE WASTE WITH RECYCLED BOOKS.
  • GREAT VALUE: ACCESS BESTSELLERS AND CLASSICS AT A FRACTION OF RETAIL PRICE.
BUY & SAVE
$23.08 $31.00
Save 26%
Learn Prolog Now! (Texts in Computing, Vol. 7)
10 Prolog Programming in Depth

Prolog Programming in Depth

  • AFFORDABLE PRICES FOR QUALITY READS-SAVE BIG ON YOUR FAVORITE BOOKS!
  • ECO-FRIENDLY CHOICE: REDUCE WASTE BY BUYING GENTLY USED BOOKS.
  • VERIFIED CONDITIONS ENSURE SATISFACTION-SHOP WITH CONFIDENCE!
BUY & SAVE
$320.72
Prolog Programming in Depth
+
ONE MORE?

In Prolog, you can remove sub-lists by using the built-in predicate delete/3. This predicate takes three arguments: the list you want to remove elements from, the sub-list you want to remove, and the resulting list without the sub-list.

Here's an example of how you can use delete/3 to remove a sub-list in Prolog:

delete([1,2,3,4,5], [2,3], Result).

This would result in Result = [1,4,5]. This will remove the sub-list [2,3] from the original list [1,2,3,4,5].

Alternatively, you can write your own predicate to remove sub-lists by recursively traversing the list and checking for sub-lists to remove. This would involve checking if the current element is a sub-list and then removing it if it is.

How to write a predicate to remove sub-lists in Prolog?

To write a predicate to remove sub-lists in Prolog, you can use the following approach:

remove_sublists([], []). remove_sublists([X|Xs], Result) :- is_list(X), !, remove_sublists(Xs, Result). remove_sublists([X|Xs], [X|Result]) :- remove_sublists(Xs, Result).

This predicate remove_sublists/2 takes a list as input and returns a new list with all sub-lists removed. It does this by recursively iterating through the input list and checking if each element is a list. If it is a list, it skips that element and continues with the rest of the list. If it is not a list, it adds that element to the new list.

How to remove sub-lists while preserving the original list in Prolog?

To remove sub-lists while preserving the original list in Prolog, you can create a predicate that recursively iterates through the list and removes any sub-lists it encounters. Here is an example implementation:

remove_sublists([], []). remove_sublists([H|T], [H|Result]) :- \+ is_list(H), remove_sublists(T, Result). remove_sublists([H|T], Result) :- is_list(H), remove_sublists(T, Result).

In this code snippet, remove_sublists/2 is a predicate that takes two arguments - the original list and the resulting list after removing sub-lists. The predicate recursively goes through each element of the list and checks if it is a sub-list using the is_list/1 predicate. If it is not a sub-list, it adds the element to the resulting list. If it is a sub-list, it skips over it and continues with the next element.

You can then use this predicate to remove sub-lists from a given list like this:

?- remove_sublists([1, [2, 3], 4, [5, 6, 7], 8], Result). Result = [1, 4, 8].

This will return Result = [1, 4, 8], which is the original list with sub-lists removed.

What is the difference between removing sub-lists and flattening a list in Prolog?

Removing sub-lists in Prolog refers to eliminating any lists that are nested within a primary list, effectively reducing the list to a single level. This can be achieved by iterating through the list and checking each element, and removing any nested lists that are encountered.

Flattening a list in Prolog, on the other hand, involves converting a nested list structure into a single-level list by recursively traversing through the list and extracting all individual elements. This process essentially combines all elements within nested lists into a single list without any sublist structure.

In summary, removing sub-lists aims to eliminate nested lists within a list, while flattening a list involves converting a nested list structure into a single-level list.