implement "bool find(int)" function for DoublyLinkList)
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
using namespace std;
//Node Class
class Node {
private:
int data;
Node next, prev;
public:
int get(){
return data;
}
void set(int a){
data = a;
}
Node*...