15 lines
		
	
	
		
			217 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			217 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OFFER_58_HPP
 | |
| #define OFFER_58_HPP
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| using namespace std;
 | |
| 
 | |
| class Offer58 {
 | |
|  public:
 | |
|   string reverseLeftWords(string s, int n);
 | |
|   void reverseSubStr(string &s, int begin, int end);
 | |
| };
 | |
| 
 | |
| #endif
 |