Paste #130768 |
pasted on 29.12.2019 23:40
- Edit to this paste
- Raw
- The following pastes replied to this paste: # 131706 # 138306 # 216515 # 231528
- Show paste tree
-
Compare with paste
#
Text paste
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | #include "StdAfx.h" #include "c:\\mironena\\work\\SelfDev\\C++\\Projects\\Dll\\Export.h" #pragma comment( lib, "c:\\mironena\\work\\SelfDev\\C++\\build\\bin\\Win32\\Debug\\Dll.lib" ) #include <iostream> #include <cstring> #include <string> #include <set> #include <algorithm> #include <sstream> #include <vector> #include <windows.h> #include <stdio.h> #include <conio.h> #include <tchar.h> //template< typename Base, typename DerivedTypeDetails > //class ObjectFactory //{ //protected: // // typedef void(*InstanceCreatorFunc)(Base*&); // typedef typename DerivedTypeDetails::KeyType KeyType; // // struct ObjectType // { // InstanceCreatorFunc pCreatorFunc; // const DerivedTypeDetails* pObjectTypeDetails; // // ObjectType() // : pCreatorFunc(NULL) // , pObjectTypeDetails(NULL) // { // } // }; // // // // // This is a map which maps strings to functions that create an // // object of the specified type. // // // typedef KeyValueMap< KeyType, ObjectType > ObjectTypeMap; // // // // // Declare an additional type definition that is this particular // // type of object factory. // // // typedef ObjectFactory< Base, DerivedTypeDetails > FactoryType; // //protected: // // // // Protected Constructor // // // ObjectFactory() // : m_objectTypeMap() // { // } // //public: // // // // Here is a helper class used for registering the derived classes // // of type _base with the object factory, along with a pointer to a // // function that can create an object of that type. // // // // This is a nested class because it is a registrar for this type of factory, // // rather than just a general registrar that can work with any factory. // // // class Registrar // { // public: // Registrar(const DerivedTypeDetails& objectTypeDetails, // InstanceCreatorFunc pCreatorFunc) // : m_objectTypeDetails(objectTypeDetails) // , m_pCreatorFunc(pCreatorFunc) // , m_bRegistered(false) // { // registerClass(); // } // // public: // // // // Needed sometimes to force compiler to link in the registrar. // // // void registerClass() // { // if (m_bRegistered == false) // { // ObjectFactory& factory = ObjectFactory::instance(); // factory.registerClass(m_objectTypeDetails, m_pCreatorFunc); // m_bRegistered = true; // } // } // // bool isRegistered() // { // return m_bRegistered; // } // // public: // // // // Private data members // // // const DerivedTypeDetails& m_objectTypeDetails; // InstanceCreatorFunc m_pCreatorFunc; // bool m_bRegistered; // }; // //public: // // // // Public type definitions // // // typedef typename ObjectTypeMap::KeyValueVectorType ObjectTypeVector; // //public: // // // // Public interface // // // // // // // Singleton pattern static member for obtaining the single instance // // of the class. // // // static ObjectFactory& instance() // { // static ObjectFactory factory; // return factory; // } // // // // // Destructor // // // ~ObjectFactory() // { // } // // // // // This method will create an object of the specified type. // // // Base* createObject(const KeyType& key) // { // Base* pNewObj = NULL; // // Risk::CSGuard guard(m_cs); // // // // // Search for a map entry with the same name // // // ObjectTypeMap::iterator i = m_objectTypeMap.find(key); // if (i != m_objectTypeMap.end()) // { // // // // Get a pointer to the creator function // // // InstanceCreatorFunc pCreatorFunc = (*i).second.pCreatorFunc; // // // // // Unlock the critical section before calling the creator function // // Note: This may lead to race conditions // // // guard.unlock(); // // // // // Now call it to create an object of the specified type // // // (*pCreatorFunc)(pNewObj); // } // // return pNewObj; // } // // // // // Return a list of the object types this factory can create // // // void getObjectTypes(ObjectTypeVector& objecTypes) // { // m_objectTypeMap.convertToVector(objecTypes); // } // // //protected: // // // // Protected helper functions // // // // // // // This allows the Registrar to register the object creator functions // // // friend class Registrar; // // // // // This method registers the type of objects that this factory // // can create. // // // void registerClass(const DerivedTypeDetails& objectTypeDetails, // InstanceCreatorFunc pCreatorFunc) // { // Risk::CSGuard guard(m_cs); // // ObjectType objectType; // objectType.pCreatorFunc = pCreatorFunc; // objectType.pObjectTypeDetails = &objectTypeDetails; // // m_objectTypeMap.insert(ObjectTypeMap::value_type(KeyType(objectTypeDetails.key), objectType)); // } // // //private: // // // // Private data members // // // CS m_cs; // // // // // This is the map which maps object names to a function // // that can create an object of that type. // // // ObjectTypeMap m_objectTypeMap; //}; //struct String //{ // // String(const char *str = "") // { // size_ = strlen( str ); // str_ = new char[ size_ + 1 ]; // strncpy( str_, str, size_+ 1 ); // } // // String(size_t n, char c) // { // size_ = n; // str_ = new char[ size_ + 1](); // // for (int i = 0; i < size_; ++i) // { // str_[i] = c; // } // str_[size_ + 1] = '\0'; // } // // size_t size_; // char* str_; //}; //namespace //{ // //char* getline() //{ // char inputSymbol = '\0'; // int stringLength = 1; // char* resultStr = new char[stringLength](); // // while ( std::cin.get(inputSymbol) && inputSymbol != '\n' ) // { // char* tmp = new char[ stringLength + 1 ](); // // strcpy(tmp, resultStr); // tmp[ stringLength - 1 ] = inputSymbol; // delete[] resultStr; // resultStr = tmp; // ++stringLength; // } // // return resultStr; //} // //void removeExtraSpaces(std::string& inputStr) //{ // size_t firstNonSpaceSymbol = inputStr.find_first_not_of(' '); // // if ( firstNonSpaceSymbol != std::string::npos ) // { // inputStr = inputStr.substr( firstNonSpaceSymbol, inputStr.length() - firstNonSpaceSymbol ); // } // // size_t lastNonSpaceSymbol = inputStr.find_last_not_of(' '); // if ( lastNonSpaceSymbol != std::string::npos ) // { // inputStr = inputStr.substr( 0, lastNonSpaceSymbol + 1 ); // } // // size_t repeatedSpaceLocation = inputStr.find(" "); // while( repeatedSpaceLocation != std::string::npos ) // { // inputStr.replace( repeatedSpaceLocation, 2, " " ); // repeatedSpaceLocation = inputStr.find(" "); // } //} // //int** transpose(const int* const* m, size_t r, size_t c) //{ // int** resultMatrix = new int *[c]; // for (unsigned int i = 0; i < c; i++) // resultMatrix[i] = new int[r]; // // // for ( unsigned int i = 0; i < r; i++ ) // for ( unsigned int j = 0; j < c; j++ ) // resultMatrix[j][i] = m[i][j]; // // return resultMatrix; //} // //void swap_min(int** mt, unsigned int m, unsigned int n) //{ // int rowNum = 0, minElem = mt[0][0]; // // for ( unsigned int i = 0; i < m; i++ ) // { // for ( unsigned int j = 0; j < n; j++ ) // { // if ( mt[i][j] < minElem) // { // minElem = mt[i][j]; // rowNum = i; // } // } // } // // if ( rowNum != 0 ) // { // for ( unsigned int i = 0; i < n; ++i ) // { // int tmp = mt[0][i]; // mt[0][i] = mt[rowNum][i]; // mt[rowNum][i] = tmp; // } // } //} // //void outputMatrix(int** mt, int rows, int columns) //{ // for (int i = 0; i < rows; ++i ) // { // for (int j = 0; j < columns; ++j) // { // std::cout << mt[i][j] << " "; // } // std::cout << std::endl; // } // std::cout << std::endl; //} // //int** createAndFillMatrix(int rows, int columns) //{ // int** matrix = new int*[rows](); // for ( int i = 0; i != rows; ++i ) // matrix[i] = new int[columns](); // // int k = 1; // for (int i = 0; i < rows; ++i ) // { // for (int j = 0; j < columns; ++j) // { // matrix[i][j] = k; // ++k; // } // } // // return matrix; //} // //void createFileMapping(const std::wstring& filePath) //{ // int a; // std::cin >> a; // // TCHAR szName[] = TEXT("Global\\MyFileMappingObject"); // // HANDLE hFile = CreateFile( // filePath.c_str(), // GENERIC_READ | GENERIC_WRITE, // FILE_SHARE_READ | FILE_SHARE_WRITE, // NULL, // OPEN_EXISTING, // 0, // 0 ); // // // handle failure // if ( hFile == INVALID_HANDLE_VALUE ) // { // _tprintf( TEXT( "Could not create file mapping object (%d).\n" ), GetLastError() ); // } // // HANDLE hFileMap = CreateFileMapping( // hFile, // use paging file // NULL, // default security // PAGE_READWRITE, // read/write access // 0, // maximum object size (high-order DWORD) // 0, // maximum object size (low-order DWORD) // L"Global\\MyFileMappingObject" ); // name of mapping object // // if ( hFileMap == NULL ) // { // _tprintf( TEXT( "Could not create file mapping object (%d).\n" ), GetLastError() ); // } //} // //} template<unsigned long N> struct binary { static unsigned long const value = binary<N / 10>::value << 1 | N % 10; }; template <> struct binary<0> { static unsigned long const value = 0; }; int binary_conv(int binary) { if (binary == 0) return 0; return binary_conv(binary / 10) << 1 | binary % 10; } std::vector<std::string>&& xvalue_func() { static std::vector<std::string> vec; vec = std::vector<std::string>(2, "Hola"); return std::move(vec); } int main() { //************************************************************************* // const int ROWS = 3, COLUMNS = 3; // // int** matrix = createAndFillMatrix( ROWS, COLUMNS ); // outputMatrix( matrix, ROWS, COLUMNS ); // // swap_min(matrix, ROWS, COLUMNS); // outputMatrix( matrix, ROWS, COLUMNS ); // // int** result = transpose(matrix, ROWS, COLUMNS); // outputMatrix( matrix, COLUMNS, ROWS ); //************************************************************************* // std::string someStr; // std::getline( std::cin, someStr ); // // int** matrixVar; // removeExtraSpaces( someStr ); // std::cout << someStr; //************************************************************************* // int myints[] = {10,20,30,30,20,10,10,20}; // std::multiset<int> int_map(myints, myints+8); // // auto iter = int_map.lower_bound( 20 ); // std::cout << "Upperbound value: " << *int_map.upper_bound(20) << std::endl; // std::cout << "Lowerbound value: " << *iter << std::endl; // std::for_each(iter, int_map.end(), [=](int var) // { // std::cout << var << " "; // }); //************************************************************************* std::wcout << binary_conv(101) << std::endl; std::wcout << binary<101>::value << std::endl; //************************************************************************* std::vector<std::string> value = xvalue_func(); value.push_back("Hello"); std::cout << "size= " << value.size() << std::endl; std::vector<std::string>::iterator it = value.begin(); while (it != value.end()) std::cout << *it++ << std::endl; std::vector<std::string>&& v = xvalue_func(); v.push_back("Guten tag"); std::cout << "size= " << v.size() << std::endl; it = v.begin(); while (it != v.end()) std::cout << *it++ << std::endl; v = xvalue_func(); std::cout << "size= " << v.size() << std::endl; it = v.begin(); while (it != v.end()) std::cout << *it++ << std::endl; return 0; } |