[ create a new paste ] login | about

Almg

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by Almg:

C++, pasted on Jan 18:
1
2
3
4
5
//Program that determines if a specific word or sentence is palindrome

#include <iostream> //import libraries
#include <string>
 
...
view (33 lines, 2 lines of output)
C++, pasted on Jan 17:
1
2
3
4
5
#include <iostream>
#include <string>
#include <sstream>

using namespace std;
...
view (23 lines, 100 lines of output)
C++, pasted on Jan 17:
1
2
3
4
// C++ program for activity selection problem. 
// The following implementation assumes that the activities 
// are already sorted according to their finish time 
#include<stdio.h> 
...
view (43 lines, 1 line of output)
C++, pasted on Jan 17:
1
2
3
4
5
// C++ program to implement recursive Binary Search 
#include <iostream> 
using namespace std; 

// A recursive binary search function. It returns 
...
view (42 lines, 1 line of output)